UNPKG

@atlaskit/select

Version:

Select allows users to make a single selection or multiple selections from a list of options.

11 lines (10 loc) 282 B
/** * @jsxRuntime classic * @jsx jsx */ import type { JSX } from 'react'; import { type OptionProps, type OptionType } from '../types'; /** * __Radio option__ */ export declare const RadioOption: <OptionT extends OptionType>(props: OptionProps<OptionT, false>) => JSX.Element;