/** * Block Diagram Parser * * Parses block-beta diagram syntax into BlockAST using the vendored JISON parser. */ import { type BlockAST } from '../types/block.js'; /** * Detects if the input is a block diagram */ export declare function isBlockDiagram(input: string): boolean; /** * Parses block diagram syntax into BlockAST */ export declare function parseBlock(input: string): BlockAST; //# sourceMappingURL=block-parser.d.ts.map