import {IconType} from "../utils"; export interface SelectItem { label?: string; value?: any; className?: string; icon?: IconType; title?: string; disabled?: boolean; }