/** * Python Parser Adapter * * Tier 1 regex-based parser for Python source files. * Extracts classes, functions, decorators, async functions, * type hints, imports, and module-level variables. * * @see TRL-5 */ import type { ParserAdapter } from './types.js'; export declare const pythonParser: ParserAdapter; //# sourceMappingURL=python-parser.d.ts.map