import { FunctionComponent } from 'react'; import { UnassembledMessages } from '@gecogvidanto/shared'; import { langType } from '../../../../locale'; export interface TextProps { outerClasses: { [key: string]: boolean; }; innerClasses: { [key: string]: boolean; }; identifier: string; titled: boolean; content: UnassembledMessages[keyof langType]; } /** * A text message. */ declare const Text: FunctionComponent; export default Text;