import type { EvidenceRecord } from '@vibe-agent-toolkit/agent-skills'; /** Python 3.10+ standard library modules */ export declare const PYTHON_STDLIB_MODULES: ReadonlySet; /** * Classify a script file by its extension. Returns a single SCRIPT_FILE_* * evidence record when the extension matches a known script type. */ export declare function classifyScriptFile(relativePath: string): EvidenceRecord | undefined; /** * Parse Python source content for import statements and return evidence * for any third-party (non-stdlib) imports found, one record per distinct * module. */ export declare function scanPythonImports(content: string, filePath: string): EvidenceRecord[]; //# sourceMappingURL=script-file-scanner.d.ts.map