import type { Grammar } from 'ohm-js';
import type { Program } from './ast/nodes';
export declare function buildGrammar(): Grammar;
export declare function buildAST(input: string, grammar: Grammar): Program;
