import React from 'react'; import { type Locale } from '@atlaskit/locale/LocaleSelect'; export interface I18NWrapperState { locale: Locale; } export interface I18NWrapperProps { children: React.ReactNode; initialLocale?: string; } export declare const I18NWrapper: ({ children, initialLocale }: I18NWrapperProps) => React.JSX.Element;