export interface MedSelectOption<T> {
    value: T;
    label: string;
}
