import type { SessionId, OrchestratorConfig, ProjectConfig } from "../types.js"; export interface ScannedSession { sessionId: SessionId; projectId: string; project: ProjectConfig; sessionsDir: string; rawMetadata: Record; } export declare function scanAllSessions(config: OrchestratorConfig, projectIdFilter?: string): ScannedSession[]; export declare function getRecoveryLogPath(configPath: string): string; //# sourceMappingURL=scanner.d.ts.map