import * as React from 'react'; import { IDictionary, ITranslation } from '@goodgamestudios/webshop-utils'; declare type ILocaleContext = { messages: ITranslation; locale: string; formatAmount: (value: number) => string; translate: (id: string, values?: IDictionary) => string; formatCurrency: (currency: string, value: number) => string; }; export declare const LocaleContext: React.Context; export declare const LocaleProvider: React.FunctionComponent<{ messages: ITranslation; locale: string; }>; export {};