@atlaskit/select
Version:
Select allows users to make a single selection or multiple selections from a list of options.
11 lines (10 loc) • 437 B
TypeScript
/**
* @jsxRuntime classic
* @jsx jsx
*/
import { type ReactNode, type Ref } from 'react';
import { type OptionType } from '../types';
import type { PopupSelectHandle, PopupSelectProps } from './popup-select';
export declare const PopupSelectTopLayer: <Option = OptionType, IsMulti extends boolean = false, Modifiers = unknown>(props: PopupSelectProps<Option, IsMulti, Modifiers> & {
ref?: Ref<PopupSelectHandle>;
}) => ReactNode;