import { GlobalProps } from '../../shared/global'; import { BaseOptionProps } from '../../shared/input'; import { ComponentChildren } from '../../shared/children'; export interface OptionProps extends GlobalProps, BaseOptionProps { /** * The content to use as the label. */ children?: ComponentChildren; }