import { RecipePredicateMap, RecipePredicateOptions } from '../../models'; export declare const ValueOperation: { VALUE: string; AVERAGE: string; MAX: string; MIN: string; Z_SCORE: string; VARIANCE: string; STD_DEV: string; DIFFERENCE: string; ABS_DIFFERENCE: string; PCT_CHANGE: string; ABS_PCT_CHANGE: string; }; export declare const valueOperations: string[]; export declare const getValuePredicateMap: (options: RecipePredicateOptions) => RecipePredicateMap;