/** * Go Parser using Regex-based parsing * Single Responsibility: Parse Go files only */ import { BaseLanguageParser, ParsedCodeStructure } from './ilanguage-parser'; export declare class GoParser extends BaseLanguageParser { parse(content: string, filePath: string): Promise; getSupportedExtensions(): string[]; private parseWithRegex; private removeComments; private parsePackage; private parseImports; private isStdLib; private parseStructs; private findStructMethods; private parseInterfaces; private parseFunctions; private parseTypes; } //# sourceMappingURL=go-parser.d.ts.map