/** * @nahisaho/musubix-codegraph - Python Extractor * * AST extractor for Python source files * * @see REQ-CG-AST-001 * @see DES-CG-PYTHON */ import type { ParseResult } from '../../types.js'; import { BaseExtractor, type LanguageConfig, type SyntaxTree } from './base-extractor.js'; /** * Python language extractor */ export declare class PythonExtractor extends BaseExtractor { readonly config: LanguageConfig; extract(tree: SyntaxTree, filePath: string, sourceCode: string): ParseResult; private extractFunction; private extractClass; private extractInheritance; private extractImport; } //# sourceMappingURL=python.d.ts.map