UNPKG

@atlaskit/select

Version:

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

14 lines (13 loc) 577 B
/** * @jsxRuntime classic * @jsx jsx */ import { type FC, type JSX } from 'react'; import { type ClearIndicatorProps, type ControlProps, type MenuProps, type MultiValueRemoveProps, type OptionType } from '../types'; export declare const defaultComponents: { Control: FC<ControlProps<OptionType, boolean>>; DropdownIndicator: () => JSX.Element; Menu: ({ children, innerProps }: MenuProps<OptionType, boolean>) => JSX.Element; ClearIndicator: (props: ClearIndicatorProps) => JSX.Element; MultiValueRemove: (props: MultiValueRemoveProps) => JSX.Element; };