export interface DropdownOption { /** * The text to display as the dropdown list option label. * * @example * * */ label: string; /** * The dropdown list option value. * Each value must be unique to the option. */ value: string; /** * A boolean value to determine whether or not the dropdown list option is pre-selected. * If no selected value is set, it will be set to false. */ selected?: boolean; }