export type SelectOption<TValue = string> = {
  value: TValue;
  label: string;
  disabled?: boolean;
};

