import { PopoverProps as AriaPopoverProps } from 'react-aria-components'; import React from 'react'; export interface PopoverProps extends Omit { children: React.ReactNode; referenceWidth?: number; } declare const MenuPopover: ({ children, ...props }: PopoverProps) => import("react/jsx-runtime").JSX.Element; export { MenuPopover }; //# sourceMappingURL=MenuPopover.d.ts.map