import jsonata, { Focus } from 'jsonata';
export declare function toExpr(expr: string, functions?: JsonataFn[]): jsonata.Expression;
export interface JsonataFn {
    name: string;
    fn: (this: Focus, ...args: any[]) => any;
    signature?: string;
}
export declare const jsonataExtraFunctions: JsonataFn[];
