import { GridFilterOperator } from '../models/gridFilterOperator'; import { GridCellParams } from '../models'; export declare const getGridNumericQuickFilterFn: (value: any) => (({ value }: GridCellParams) => boolean) | null; export declare const getGridNumericOperators: () => GridFilterOperator[]; /** * @deprecated Use `getGridNumericOperators` instead. */ export declare const getGridNumericColumnOperators: (() => GridFilterOperator[]) | ((...args: any[]) => any);