import type { SQLiteStore } from '@cortex/graph'; export interface FindEntityInput { name: string; expand?: boolean; type?: string; } interface EntityMatch { id: string; type: string; name: string; summary?: string; content: string; sourceFile: string; sourceRange?: { startLine: number; endLine: number; }; confidence: number; tags: string[]; createdAt: string; relationships: Array<{ id: string; type: string; direction: 'outgoing' | 'incoming'; otherEntityId: string; otherEntityName?: string; description?: string; confidence: number; }>; } export interface FindEntityResult { found: boolean; matches: EntityMatch[]; } export declare function handleFindEntity(input: FindEntityInput, store: SQLiteStore): Promise; export {}; //# sourceMappingURL=find.d.ts.map