import { Component } from 'react'; import { Consumer } from '../context'; export interface ITranslationsProps { map: { [key: string]: string | ((...args: any[]) => string); }; ns?: string; } export interface ITranslationsState { } export declare class Translations extends Component { render(): import("react").ComponentElement<{ name: string; value: { [key: string]: string | ((...args: any[]) => string); }; }, Component<{ name: string; value: { [key: string]: string | ((...args: any[]) => string); }; }, any, any>>; } export interface ITranslateProps { ns?: string; } export interface ITranslateState { } export declare class Translate extends Component { render(): import("react").ComponentElement & Readonly, Consumer>; } export declare const T: typeof Translate; export declare const withT: any;