import React from 'react' import { translation, TranslatorContext } from '@ui-schema/ui-schema/Translate/makeTranslator' import { StoreSchemaType } from '@ui-schema/ui-schema/CommonTypings' export interface TransProps { text: string context?: TranslatorContext schema?: StoreSchemaType fallback?: translation } /** * Translation component, supports dot strings, dictionary can be mixed strings, string functions and function components as translation */ export function Trans
(props: P): React.ReactElement