import { DateRange } from 'react-day-picker'; import { RANGE_DATE_PICKER_OPTION_ID } from './types'; type RangeDatePickerSelectOptions = { id: RANGE_DATE_PICKER_OPTION_ID; label: string; value: { from: Date; to: Date; }; }; export declare const OPTIONS: RangeDatePickerSelectOptions[]; type IsSameDate = (range?: DateRange, date?: DateRange) => boolean; export declare const isSameDate: IsSameDate; export {};