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