import * as React from 'react'; import type { Locale } from './types'; import type { AccordionLocale as AccordionLocaleAlias } from '../accordion'; import type { DatepickerLocale as DatepickerLocaleAlias } from '../datepicker'; import type { ModalLocale as ModalLocaleAlias } from '../modal'; import type { SelectLocale as SelectLocaleAlias } from '../select'; export declare const LocaleContext: React.Context; declare type DeepPartial = { [P in keyof T]?: DeepPartial; }; export declare type LocaleProviderProps = { locale: DeepPartial; children: React.ReactNode | undefined | null; }; declare const LocaleProvider: React.FC; export default LocaleProvider; export type { Locale }; /** @deprecated inded use type exported from the component itself */ export declare type AccordionLocale = AccordionLocaleAlias; export declare type DatepickerLocale = DatepickerLocaleAlias; /** @deprecated inded use type exported from the component itself */ /** @deprecated inded use type exported from the component itself */ export declare type ModalLocale = ModalLocaleAlias; /** @deprecated inded use type exported from the component itself */ /** @deprecated inded use type exported from the component itself */ export declare type SelectLocale = SelectLocaleAlias;