import React, { type ReactNode } from 'react'; import { type MenuItemProps as RACMenuItemProps } from 'react-aria-components'; export type MenuItemProps = RACMenuItemProps & { /** * Provides positioning for an icon to the left of the menu item content */ icon?: ReactNode; }; /** * A MenuItem represents an individual action in a Menu. */ export declare const MenuItem: React.ForwardRefExoticComponent & { /** * Provides positioning for an icon to the left of the menu item content */ icon?: ReactNode; } & React.RefAttributes>;