import type { SessionStore } from './session-store.js'; export type MaterializedSession = { configDir: string; projectKey: string; sessionId: string; cleanup(): Promise; }; export declare function materializeSessionFromStore(options: { store: SessionStore; cwd?: string; resume?: string; continue?: boolean; loadTimeoutMs?: number; env?: Record; }): Promise;