UNPKG

@atlaskit/select

Version:

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

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