/** * @jsxRuntime classic * @jsx jsx */ import { type CSSProperties, type FC, type ReactNode } from 'react'; import { type ClearIndicatorProps, type ControlProps, type MenuProps, type MultiValueRemoveProps, type OptionType } from '../types'; interface MenuDialogProps { style: CSSProperties; children: ReactNode; id: string; testId?: string; } /** * __Menu dialog__ * Wrapper for PopupSelect component. */ export declare const MenuDialog: React.ForwardRefExoticComponent & React.RefAttributes>; /** * __Dummy control__ * Overrides the default DummyControl component in Select. */ export declare const DummyControl: (props: ControlProps) => JSX.Element; export declare const defaultComponents: { Control: FC>; DropdownIndicator: () => JSX.Element; Menu: ({ children, innerProps }: MenuProps) => JSX.Element; ClearIndicator: (props: ClearIndicatorProps) => JSX.Element; MultiValueRemove: (props: MultiValueRemoveProps) => JSX.Element; }; export {};