import * as React from "react";
import { IntlShape } from "react-intl";
import { ILocale } from "../interfaces/Visualization";
import * as enUS from "../translations/en-US.json";
export declare const messagesMap: {
    "en-US": {};
    "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;
    "zh-Hans": typeof enUS;
};
export declare function createInternalIntl(locale?: ILocale): IntlShape;
export interface IInternalIntlWrapperProps {
    locale?: string;
}
export declare class InternalIntlWrapper extends React.PureComponent<IInternalIntlWrapperProps> {
    static defaultProps: IInternalIntlWrapperProps;
    render(): JSX.Element;
}
