import { DateRange, Matcher } from 'react-day-picker'; import { InputValue } from '../../../validators'; export type DisabledDays = Matcher | Matcher[] | undefined; export declare const fromInputValue: (inputValue: InputValue) => DateRange | undefined; export declare const getDisplayRange: (range: DateRange | undefined, format?: string) => string; export declare const convertToDate: (val: InputValue | undefined) => Date | undefined; export declare const getDisabledDays: (disabled: boolean, minDate?: InputValue, maxDate?: InputValue) => DisabledDays;