import React from 'react'; export interface I18nTextProps { children?: React.ReactNode; i18nKey?: string; } export declare const I18nText: ({ i18nKey, children }: { i18nKey: any; children: any; }) => React.JSX.Element; export default I18nText;