import React from 'react'; import { Locale } from 'react-day-picker'; export type DayPickerAdapterContextValue = { /** * Locale for the date library you are using */ adapterLocale?: Partial | undefined; /** * date-fns format yyyy-MM-dd * https://github.com/date-fns/date-fns/blob/main/src/format/index.ts * https://github.com/date-fns/date-fns/blob/main/docs/unicodeTokens.md */ valueFormat?: string | undefined; timeValueFormat?: string | undefined; /** * ' – ' */ dateRangeSeparator?: string; }; export declare const DayPickerAdapterContext: React.Context; export declare const DayPickerAdapterProvider: React.Provider;