import { Dispatch, SetStateAction } from 'react'; import { Matcher } from 'react-day-picker'; export declare const getValue: (date?: Date, _dateFormat?: string) => string; export declare const setPickerPosition: (e: React.MouseEvent, setPositionAbove: Dispatch>) => void; interface IsDisabledArgs { parsedDate?: Date; disabledDays?: Matcher | Matcher[]; } export declare const isDisabledDate: ({ parsedDate, disabledDays }: IsDisabledArgs) => boolean; export declare const buildDisabled: (disabledDays: Matcher | Matcher[] | undefined, disallowPast?: boolean, disallowFuture?: boolean, today?: Date) => Matcher[]; export {};