import React, { RefObject } from 'react'; import { Id } from '../../@types'; type FilterValue = [string | undefined, string | undefined] | string; type GridFilterItem = { columnField: string; id: Id; operatorValue: string; value: FilterValue; }; type InputIntervalProps = { applyValue: (params: GridFilterItem) => void; focusElementRef?: null | ((instance: HTMLInputElement | null) => void) | RefObject; item: GridFilterItem; type: string; }; type WrapperProps = Omit; export declare const InputNumberInterval: (props: WrapperProps) => React.JSX.Element; export declare const InputDateInterval: (props: WrapperProps) => React.JSX.Element; export declare const InputFloatInterval: (props: WrapperProps) => React.JSX.Element; export {}; //# sourceMappingURL=InputInterval.d.ts.map