import type { SQLiteStore } from '@cortex/graph'; export interface SearchEntitiesInput { query: string; limit?: number; type?: string; } export interface SearchEntitiesResult { count: number; entities: Array<{ id: string; type: string; name: string; summary?: string; sourceFile: string; confidence: number; tags: string[]; }>; } export declare function handleSearchEntities(input: SearchEntitiesInput, store: SQLiteStore): Promise; //# sourceMappingURL=search.d.ts.map