/**
 * @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 {};
