import type { SessionInfo, GatewayOptions } from './types.js'; export interface SessionState { info: SessionInfo; logDir: string; files: Record; channels: string[]; startedAt: number; checkpointTs: number | null; browserCheckpoints: Record; } export declare function initSession(options: GatewayOptions, serverUrl: string, mcpPath: string): SessionState; export declare function truncateChannelFiles(files: Record, channels?: string[]): Record; //# sourceMappingURL=session.d.ts.map