import { UnassembledMessages } from '../tools'; import FieldCore from './FieldCore'; /** * A simple text which should be displayed to end user. */ export default interface Text extends FieldCore { type: 'text'; content: UnassembledMessages[keyof T]; }