import { BaseParser } from './base'; import { CodeChunk, ParsedModule } from '../../types'; export declare class PythonParser extends BaseParser { constructor(); parse(filePath: string, content: string): Promise; extractChunks(content: string, filePath: string): CodeChunk[]; private isMethodInClass; private extractClassChunk; private extractMethodChunk; private extractFunctionChunk; extractDependencies(content: string): string[]; private extractImports; private extractExports; private analyzeDependencies; } //# sourceMappingURL=python-parser.d.ts.map