export interface CallNode {
    symbol: string;
    filePath: string;
    line: number;
    column: number;
}
export interface CallEdge {
    from: CallNode;
    to: CallNode;
    type: 'direct' | 'indirect';
}
export interface CallPath {
    nodes: CallNode[];
    edges: CallEdge[];
}
export interface CallGraphResult {
    paths: CallPath[];
    entryPoints: CallNode[];
    exitPoints: CallNode[];
}
//# sourceMappingURL=call-graph.d.ts.map