import { SearchEngine } from '../../core/search/SearchEngine'; import { CallToolResult } from '../protocol/types'; export interface GetCallGraphParams { function: string; file?: string; repository?: string; direction?: 'callers' | 'callees' | 'both'; maxDepth?: number; limit?: number; } export declare function getCallGraph(params: GetCallGraphParams, searchEngine: SearchEngine): Promise; //# sourceMappingURL=getCallGraph.d.ts.map