import React from 'react'; import { TemplateValues } from '@particular.cloud/i18n-js'; export interface TextProps { textKey: string; language?: string; values?: TemplateValues; isolate?: boolean; } /** * Text: A component wrapper around the useT hook * (useful in class components where hooks cannot be used.) */ declare const Text: React.FC; export default Text;