import { ParseResult } from './types'; export interface ParserConfig { enabledLanguages?: string[]; maxFileSize?: number; timeout?: number; } export declare class ParserManager { private parser; constructor(config?: ParserConfig); parseFile(filePath: string): Promise; parseRepository(repositoryPath: string): Promise; getSupportedLanguages(): string[]; } //# sourceMappingURL=ParserManager.d.ts.map