UNPKG

@gooddata/react-components

Version:
22 lines (21 loc) 636 B
/// <reference types="react" /> import * as React from 'react'; import * as enUS from '../../../translations/en-US.json'; export declare const messagesMap: { 'en-US': typeof enUS; 'de-DE': typeof enUS; 'es-ES': typeof enUS; 'fr-FR': typeof enUS; 'ja-JP': typeof enUS; 'nl-NL': typeof enUS; 'pt-BR': typeof enUS; 'pt-PT': typeof enUS; }; export declare const DEFAULT_LOCALE = "en-US"; export interface IIntlWrapperProps { locale: string; } export declare class IntlWrapper extends React.PureComponent<IIntlWrapperProps, null> { static defaultProps: IIntlWrapperProps; render(): JSX.Element; }