export default interface Option {
    value: number | string;
    text: string;
    disabled?: boolean;
}
