export interface CallGraphNode {
    symbol: string;
    depth: number;
    children: CallGraphNode[];
}
export interface CallGraphResult {
    nodes: CallGraphNode[];
    entryPoint: string;
    targetSymbol: string;
}
export declare class CallGraphAnalyzer {
    static analyze(fromSymbol: string, toSymbol: string): Promise<CallGraphResult>;
}
//# sourceMappingURL=call-graph-analyzer.d.ts.map