import { ExpressionFunction } from '../../parser/src/types';
/**
 * List of all the Observable Functions available in AdaptableQL
 */
export type ObservableFunctionName = 'WHERE' | 'COL' | 'TIMEFRAME' | 'ROW_CHANGE' | 'ROW_ADDED' | 'GRID_CHANGE' | 'ROW_REMOVED' | 'MAX' | 'MIN' | 'NONE' | 'COUNT';
export declare const observableExpressionFunctions: Record<ObservableFunctionName, ExpressionFunction>;
export declare const observableExpressionFunctionNames: ObservableFunctionName[];
