import { type SessionFacet, type StoredSessionInput } from './schema.js'; export interface FacetStoreOptions { sessionsDir?: string; cacheDir?: string; force?: boolean; } export declare function loadStoredSession(sessionId: string, sessionsDir?: string): StoredSessionInput | undefined; export declare function getOrDeriveFacet(sessionId: string, options?: FacetStoreOptions): SessionFacet | undefined; export declare function listSessionIds(options?: Pick): string[];