import React, { type PropsWithChildren } from 'react'; import { type CalendarType, type DateUnitType } from './date'; type ContextValue = { locale: string; calendar: CalendarType; sortedDateUnitTypes: DateUnitType[]; monthLongNames: string[]; }; type DatePickerLocaleProviderProps = PropsWithChildren<{ locale?: string; calendar?: CalendarType; }>; declare const DatePickerLocaleProvider: ({ locale, calendar, children, }: DatePickerLocaleProviderProps) => React.JSX.Element; export default DatePickerLocaleProvider; export declare const useDatePickerLocale: () => ContextValue; //# sourceMappingURL=DatePickerLocaleProvider.d.ts.map