import { Matcher } from 'react-day-picker'; import { DateRange, NullableDateLimit } from '../date.types'; import { State } from './RangePicker.types'; export declare const getDisabledTimeOptions: (initialDay: string | Date | undefined, granularity: string, initialLowerLimit?: NullableDateLimit, initialUpperLimit?: NullableDateLimit, is12HoursClock?: boolean) => number[]; export declare const getSidesState: (value: DateRange, forceAdjacentMonths?: boolean) => State; export declare const getModifiers: (from: NullableDateLimit | undefined, to: NullableDateLimit | undefined, enteredTo: NullableDateLimit | undefined) => Record;