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