import { ReactNode } from 'react'; import { MenuAlignment, MenuPosition } from '../../../../index'; type MenuProps = { children: ReactNode; open: boolean; position: MenuPosition | null; onClose: () => void; /** @internal */ alignment?: MenuAlignment; }; export declare const Menu: ({ children, open, position, onClose, alignment }: MenuProps) => import("react/jsx-runtime").JSX.Element; export {};