import { PopoverProps } from '../Popover/Popover'; export interface MenuProps extends Omit { /** * Specify content and sub-components of the Menu */ children: React.ReactNode; /** * Specify if the Menu is open */ open?: boolean; /** * Specify if the Menu is open by default */ defaultOpen?: boolean; /** * Callback function is called when the Menu is opened or closed */ onOpenChange?: PopoverProps['onOpenChange']; /** * Specify the maximum height of the menu */ maxHeight?: string; /** * Specify the minimum width of the menu * * @default 12rem */ minWidth?: string; /** * Specify the maximum width of the menu */ maxWidth?: string; listNavigation?: Partial; } export declare const Menu: { ({ children, open, onOpenChange, maxHeight, minWidth, maxWidth, size: sizeProp, ...props }: MenuProps): import("react/jsx-runtime").JSX.Element; Trigger: ({ children, ...props }: import('./Menu.Trigger').MenuTriggerProps) => import("react/jsx-runtime").JSX.Element; PopoverContent: ({ children, style, className: _className, ...props }: import('./Menu.PopoverContent').MenuPopoverContentProps) => import("react/jsx-runtime").JSX.Element; };