import type { SQLiteStore } from '@cortex/graph'; export interface GetStatusResult { graph: { entityCount: number; relationshipCount: number; fileCount: number; projectCount: number; contradictionCount: number; dbSizeBytes: number; }; ready: boolean; hint?: string; } export declare function handleGetStatus(store: SQLiteStore): Promise; //# sourceMappingURL=status.d.ts.map