import formatByAst from './format'; import { ast2grammar as stringify, ast2lier as compile, json2ast as deduction } from './transform'; import check from './check'; declare const parse: (input: string) => any; declare const format: (input: string) => any; export { parse, stringify, compile, formatByAst, format, deduction, check };