/** * ADF Parser — tolerant parsing of ADF documents to AST. * * Handles messy LLM-generated output gracefully: missing version lines, * inconsistent emoji decorations, mixed content types. */ import type { AdfDocument } from './types'; export declare function parseAdf(input: string): AdfDocument; //# sourceMappingURL=parser.d.ts.map