export interface ISelectOption {
    selected?: boolean;
    text: string;
    value: string | number;
}
