@atlaskit/select
Version:
Select allows users to make a single selection or multiple selections from a list of options.
6 lines (5 loc) • 310 B
TypeScript
import React from 'react';
import { type OptionType, type SelectProps } from './types';
declare const CheckboxSelectInternal: <OptionT extends OptionType>({ components, ...props }: SelectProps<OptionT, true>) => React.JSX.Element;
export declare const CheckboxSelect: typeof CheckboxSelectInternal;
export {};