import { ComponentPropsWithRef, ReactNode } from 'react'; type ComponentProps = ComponentPropsWithRef<'button'> & ComponentPropsWithRef<'a'>; export type MenuItemProps = ComponentProps & { children: ReactNode; iconName?: string; contentAfter?: ReactNode; href?: string; active?: boolean; disabled?: boolean; }; export declare function MenuItem({ children, iconName, contentAfter, href, disabled, ...props }: MenuItemProps): import("react/jsx-runtime").JSX.Element; export default MenuItem;