import { ASTNode } from './ast'; export declare const calc: (expr: string) => number; export declare const printAST: (root: ASTNode) => void;