import { type Key, type Node } from '@react-types/shared' export type SingleSelectOption = { label: string value: Key disabled?: boolean options?: never } export type SingleSelectOptionGroup