export interface ProjectSummary { id: string; name: string; path: string; stateDir: string; dbPath: string; openedAt?: number; lastUsedAt: number; open: boolean; } export declare function listProjects(): Promise; export declare function openProject(path: string): Promise; export declare function closeProject(projectId: string): Promise; export declare function forgetProject(projectIdOrPath: string): Promise; //# sourceMappingURL=projects.d.ts.map