Represents an item contained in a select list.
interface TranslatableOption {
value: string;
text: string;
selected: boolean;
}
The value to be submitted with the form, should this option be selected.
The text content of the item.
Indicates that the option is selected.