import type { QueryEngine } from '@cortex/graph'; import type { Router } from '@cortex/llm'; export interface QueryCortexInput { question: string; projectId?: string; } export interface QueryCortexResult { answer: string; citations: Array<{ entityId: string; entityType: string; entityName: string; sourceFile: string; }>; entityCount: number; provider: string; model: string; } export declare function handleQueryCortex(input: QueryCortexInput, queryEngine: QueryEngine, router: Router, store: import('@cortex/graph').SQLiteStore): Promise; //# sourceMappingURL=query.d.ts.map