UNPKG

@atlaskit/select

Version:

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

18 lines (17 loc) 441 B
/** * @jsxRuntime classic * @jsx jsx */ import { type CSSProperties, type ReactNode } from 'react'; interface MenuDialogProps { style: CSSProperties; children: ReactNode; id: string; testId?: string; } /** * __Menu dialog__ * Wrapper for PopupSelect component. */ export declare const MenuDialog: React.ForwardRefExoticComponent<React.PropsWithoutRef<MenuDialogProps> & React.RefAttributes<HTMLDivElement>>; export {};