import { Arrow } from './types'; import { PropsWithChildren } from 'react'; type MenuPopoverProps = PropsWithChildren<{ open: HTMLElement; arrow?: Arrow; disabledArrow?: boolean; sx?: object; }>; declare function MenuPopover({ open, children, arrow, disabledArrow, sx, ...other }: MenuPopoverProps): import("react/jsx-runtime").JSX.Element; export { MenuPopover }; //# sourceMappingURL=MenuPopover.d.ts.map