import { IconType } from '../utils'; export type SelectItemOptionsType = SelectItem[] | any[]; export interface SelectItem { label?: string; value?: any; className?: string; icon?: IconType; title?: string; disabled?: boolean; }