­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ import type { GroupBase, Options, OptionsOrGroups } from 'react-select' export interface SelectOption { readonly key?: string | number readonly value: T readonly label: string } export type SelectGroup = GroupBase> export type SelectOptions = Options> export type SelectGroups = OptionsOrGroups, SelectGroup>