/// import { IPickerWithActionProps, TDateRange, TTimeFormat } from "./types"; import { DateRangeSelection } from "./utils/defaultDateRanges"; interface DateTimeRangePickerProps extends IPickerWithActionProps { setTimeFormat?: React.Dispatch>; timeFormat?: { t1: TTimeFormat; t2: TTimeFormat; }; customDateRanges?: DateRangeSelection[] | ((defaultRanges: DateRangeSelection[]) => DateRangeSelection[]); hideDateRange?: boolean; } declare const DateTimeRangePicker: ({ defaultValue, value, onChange, onApply, onCancel, size, rangeSelectionView, customDateRanges, setTimeFormat, timeFormat, hideDateRange, }: DateTimeRangePickerProps) => import("react/jsx-runtime").JSX.Element; export default DateTimeRangePicker;