import type { SQLiteStore } from '@cortex/graph'; export interface ListProjectsResult { projects: Array<{ id: string; name: string; rootPath: string; privacyLevel: string; fileCount: number; entityCount: number; lastIngestedAt?: string; createdAt: string; }>; total: number; } export declare function handleListProjects(store: SQLiteStore): Promise; //# sourceMappingURL=projects.d.ts.map