import { type SQLiteStore } from '@cortex/graph'; import type { Router } from '@cortex/llm'; export interface IngestFileInput { filePath: string; projectId?: string; } export interface IngestFileResult { status: string; fileId: string; entityIds: string[]; relationshipIds: string[]; entityCount: number; error?: string; } export declare function handleIngestFile(input: IngestFileInput, store: SQLiteStore, router: Router): Promise; //# sourceMappingURL=ingest.d.ts.map