import React from 'react'; export interface I18NContextProps { Trans?: any; t: (str: string, context?: any) => string; children?: React.ReactNode; i18n?: any; } export declare const defaultTranslate: (key: string, context?: Record) => string; export declare const I18NContext: React.Context; export declare const I18NProvider: React.FC; export declare const useTranslation: () => I18NContextProps; export default I18NProvider;