import { type SessionStore } from './session-store.js'; import type { SessionState } from './state.js'; export declare class FileSessionStore implements SessionStore { load(spaceId?: string, rootEntryId?: string, sessionName?: string): SessionState | null; save(state: SessionState, sessionName?: string): void; clear(spaceId: string, rootEntryId: string, sessionName?: string): void; clearAll(): void; } export declare const defaultFileSessionStore: FileSessionStore; //# sourceMappingURL=file-session-store.d.ts.map