import { ICompileOptions } from './interfaces'; import { IRootNode } from './nodes'; export declare function get_defines(d: Map): Map; export declare function createFunction(body: string, defined: Map, scope: Map): any; export declare function createDefined(action: string | any, defined: Map, scope: Map): any; export declare function compile(src: string, options: ICompileOptions): IRootNode; export default compile;