import type { ChildSessionRecord } from "../../features/session-tracker/types.js"; export interface ResolvedSession { type: "main" | "child"; rootSessionId: string; filePath: string; continuityPath: string; manifestPath: string; childRecord?: ChildSessionRecord; } /** * Resolves any session ID (main or child) to its files and parent structure on disk. * Supports both root main sessions and child sessions stateless-ly. * * All functions classes and interfaces are documented. */ export declare function resolveSessionFile(projectRoot: string, sessionId: string): Promise; //# sourceMappingURL=session-resolver.d.ts.map