import Context from '../context/context';
export declare function parseExp(exp: string, ctx: Context): Promise<any>;
export declare function evalExp(str: string, ctx: Context): Promise<any>;
export declare function evalValue(str: string | undefined, ctx: Context): Promise<any>;
export declare function isTruthy(val: any): boolean;
export declare function isFalsy(val: any): boolean;
