import { InputProps } from '../interfaces.js';
export type InputDateRangeProps = {
    names: InputProps['name'][];
    enableFilter?: boolean;
    filterAmount?: moment.DurationInputArg1;
} & Omit<InputProps, 'name'>;
export declare function InputDateRange(props: InputDateRangeProps): import("react/jsx-runtime").JSX.Element;
