import { Localization } from '../../locale/Localization';
import * as React from 'react';
type LocalizationType = Localization;
type Props = React.PropsWithChildren<{
    locale?: string;
}>;
declare const LocalizationProvider: ({ children, locale }: Props) => React.JSX.Element;
declare const useLocalizationContext: () => LocalizationType;
export { LocalizationProvider, useLocalizationContext };
