import type { Parjser } from "../parjser"; /** A parser with logic to be determined later. Useful for defining some kinds of recursive parsers. */ export interface DelayedParjser extends Parjser { init(resolved: Parjser): void; } /** * Returns a parser that has no logic by itself and must be initialized with another parser by * calling the parser's `init` function. */ export declare function later(): DelayedParjser; //# sourceMappingURL=later.d.ts.map