import * as React from "react"; import { WrappedComponentProps, IntlShape } from "react-intl"; export interface ITranslationsProviderProps { children: any; } export interface ITranslationsComponentProps { numericSymbols: string[]; emptyHeaderString: string; } export declare const getNumericSymbols: (intl: IntlShape) => string[]; export declare class TranslationsProvider extends React.PureComponent { render(): any; private getEmptyHeaderString; } export declare const IntlTranslationsProvider: React.FunctionComponent>> & { WrappedComponent: React.ComponentType>; };