export interface PlatformSessionReport { platform_id: string; workspace: string; slug: string; title: string; mail_driven: boolean; updated_at?: string; } export declare const MAX_REPORTED: number; export function snapshotOpencodeSessions( sessions: readonly any[], isMailDriven?: (id: string) => boolean ): PlatformSessionReport[]; export function snapshotDshSessions( entries: readonly any[], isMailDriven?: (id: string) => boolean ): PlatformSessionReport[]; export function slugFromTitle(title: string): string;