export type PythonAstFlow = { kind: "prompt-construction" | "messages-push" | "model-call"; hops: number; line: number; col: number; start: number; end: number; evidence: string; }; type PythonAstResult = { flows: PythonAstFlow[]; edges?: [string, string][]; errors?: string[]; }; export declare function analyzePythonAst(content: string): PythonAstResult; export {};