/** * BDD Document Parser * * Parses BDD markdown documents into structured data. * Supports both the new simplified format and legacy HTML table format. */ import type { BDDDocument } from './types'; /** * Main parser function */ export declare function parseBDDDocument(content: string): BDDDocument; //# sourceMappingURL=parser.d.ts.map