/** Base {@link SelectField} option */
export interface SelectOption {
  /** Text that will be shown in dropdown item */
  label: string;
  /** Unique value of the option */
  value: string;
  /** Disabled state */
  disabled?: boolean;
}
