import { GlobalProps } from '../../shared/global'; import { ComponentChildren } from '../../shared/children'; export interface OptionGroupProps extends GlobalProps { /** * Whether the options within this group can be selected or not. */ disabled?: boolean; /** * The user-facing label for this group of options. */ label?: string; /** * The options a user can select from. * * Accepts `Option` components. */ children?: ComponentChildren; }