export type QSelectOption<T = string> = {
  label: string;
  value: T;
};
