import type { ASTNode, EvaluatorOptions, ParserOptions } from './types';
export * from './evalutor';
export * from './evalutorForAsync';
export * from './filter';
export * from './lexer';
export * from './parser';
export * from './types';
export * from './config';
export declare function evaluate(astOrString: string | ASTNode, data: any, options?: ParserOptions & EvaluatorOptions): any;
