import { Derivation, ParseTree } from "./types";
/**
 * Generate parse tree from derivations
 * @param variables Array of variables string
 * @param derivations Array of production variable and tokens tuple
 * @returns Parse tree
 */
export declare function generateParseTreeFromDerivations(variables: string[], derivations: Derivation[]): ParseTree;
