import { SymbolKind, type DocumentSymbol, type Diagnostic } from 'vscode-languageserver/node.js'; /** Validate PRD text for structural errors (unmatched braces/brackets). */ export declare function validateText(text: string): Diagnostic[]; /** Extract document symbols (product, module, entity, etc.) from PRD text. */ export declare function extractSymbols(text: string): DocumentSymbol[]; /** Map a PRD declaration keyword to a language-server SymbolKind. */ export declare function declKindToSymbolKind(keyword: string): SymbolKind; //# sourceMappingURL=analysis.d.ts.map