export interface ISelectOption { value: string | number; name?: string; label?: string; [key: string]: any; disabled?: boolean; }