export interface Item { value: string | number; label: string; disabled?: boolean; } export interface SelectValue { value?: string | Array; }