export interface DropdownOption { /** The label displayed in the list of options. */ label: string; /** The value assigned to the dropdown value variable */ value: string; /** An optional icon displayed left to the label */ icon_url?: string; }