export type TSelectOption<V = string, L = string> = {
  value: V
  label: L
}
