export interface SymbolEntry { name: string; kind: 'function' | 'class' | 'interface' | 'type' | 'variable' | 'export'; file: string; line: number; exported: boolean; calledBy?: string[]; calls?: string[]; } export declare function buildCodeGraph(cwd: string): Promise; export declare function watchAndIndex(cwd: string): Promise; export declare function findUsages(symbolName: string, cwd: string): Promise; export declare function getCallGraph(cwd: string): Promise; export declare function queryGraph(query: string, cwd: string): Promise; //# sourceMappingURL=code-graph.d.ts.map