import { type Runnable, type RunOptions, type RunResult } from './run.ts'; /** * Run a grammar against an input. * * Identical contract to `parseman/run`'s `run()`, with one difference that is * the point of this module: a COMBINATOR entry is lowered to a table and the * table is what parses. `options.trivia` is lowered the same way — it is a parse * of the same grammar and would otherwise be the one place the interpreter still * ran on the product path. */ export declare function run(entry: Runnable, input: string, options?: RunOptions): RunResult; //# sourceMappingURL=run-tabled.d.ts.map