export interface OptionProps {
    label: string;
    value: string | number;
    disabled?: boolean;
    isExtra?: boolean;
}
