/** * Python source-code pattern analyzer. * Covers Flask, FastAPI, Django, DRF, and common DB/auth patterns. */ import type { DetectedArtifact } from './types.js'; import type { ScannedFile } from './file-walker.js'; export declare function analyzePythonFile(file: ScannedFile): DetectedArtifact[]; //# sourceMappingURL=python.d.ts.map