/** * C4 Diagram Parser * * Parses C4 diagram syntax into C4AST using the vendored JISON parser. */ import { type C4AST } from '../types/c4.js'; /** * Detects if the input is a C4 diagram */ export declare function isC4Diagram(input: string): boolean; /** * Parses C4 diagram syntax into C4AST */ export declare function parseC4(input: string): C4AST; //# sourceMappingURL=c4-parser.d.ts.map