import { LocalizedOption } from '../tools'; import InputFieldCore from './InputFieldCore'; /** * A simple selection input. */ export default interface SelectInput extends InputFieldCore { type: 'select-input'; content: string; choices: LocalizedOption[]; }