import InputFieldCore from './InputFieldCore'; /** * A simple text input. */ export default interface TextInput extends InputFieldCore { type: 'text-input'; content: string; minLength?: number; maxLength?: number; }