/** * Go Parser Adapter * * Tier 1 regex-based parser for Go source files. * Extracts structs, interfaces, functions, methods, type aliases, * constants, variables, and imports. * * @see TRL-6 */ import type { ParserAdapter } from './types.js'; export declare const goParser: ParserAdapter; //# sourceMappingURL=go-parser.d.ts.map