import * as React from "react";
interface ITranslations {
    [key: string]: string;
}
export declare const messagesMap: {
    [locale: string]: ITranslations;
};
export interface IIntlWrapperProps {
    locale: string;
}
export declare class IntlWrapper extends React.PureComponent<IIntlWrapperProps> {
    static defaultProps: IIntlWrapperProps;
    render(): JSX.Element;
}
export {};
