import { AriaButtonProps } from '@react-aria/button'; import { IconProps } from '../Icon'; import { RefObject } from 'react'; import { UIButtonVariant } from 'types/UserInterface'; export interface MenuButtonProps extends AriaButtonProps<'button'> { buttonRef: RefObject; /** The variant of the button. */ variant: UIButtonVariant; /** The icon to show. */ iconName?: IconProps['name']; } /** Represents a button that is used to open a menu. */ export declare function MenuButton({ buttonRef, variant, iconName, children, ...restProps }: MenuButtonProps): import("react").JSX.Element;