import { IContextFreeGrammar, IContextFreeGrammarInput } from '../types';
/**
 * Populates the variables and terminals of cfg via extraction
 * @param cfg Cfg to populate
 * @returns Populated cfg
 */
export declare function populateCfg(cfg: IContextFreeGrammarInput): IContextFreeGrammar;
