import React from 'react'; import { type BasePickerProps } from '../BasePicker/BasePicker.types'; export type CalendarLocaleContextValue = BasePickerProps['calendarLocale']; export declare function CalendarLocaleProvider({ value, children, }: { value: CalendarLocaleContextValue; children: React.ReactNode; }): import("react/jsx-runtime").JSX.Element; export declare function useCalendarLocale(): NonNullable;