import * as React from 'react'; import { type ConfigProviderContextInterface } from '../ConfigProvider/ConfigProviderContext'; export interface LocaleProviderProps { /** * Строка с языковой меткой BCP 47. */ value: ConfigProviderContextInterface['locale']; /** * Содержимое. */ children: React.ReactNode; } /** * Компонент, прокидывающий локаль. Список можно найти в * [реестре языковых подметок IANA](https://www.iana.org/assignments/language-subtag-registry/language-subtag-registry). * * @since 5.0.0 * @see https://vkui.io/components/locale-provider */ export declare function LocaleProvider({ value, children }: LocaleProviderProps): React.ReactNode; //# sourceMappingURL=LocaleProvider.d.ts.map