import { Derivation, IContextFreeGrammarInput } from "./types";
export declare function parseWithLL1Table(inputCfg: IContextFreeGrammarInput, textContent: string): {
    parsed: boolean;
    derivations: Derivation[];
    tree: import("./types").ParseTree;
};
