import { ButtonHTMLAttributes, ComponentPropsWithoutRef, ReactNode } from 'react';
import { IconProps } from '../Icon';
export type MenuLegacyItemProps = {
icon?: IconProps["svg"];
label: ReactNode;
disabled?: boolean;
} & ComponentPropsWithoutRef<"button">;
export declare const MenuLegacyItem: import('react').ForwardRefExoticComponent<{
icon?: IconProps["svg"];
label: ReactNode;
disabled?: boolean;
} & Omit, HTMLButtonElement>, "ref"> & ButtonHTMLAttributes & import('react').RefAttributes>;