import React from "react";
import { ListItemProps } from "@react-md/list";
export interface MenuItemProps extends ListItemProps {
    /**
     * An optional id for the menu item. This is generally recommended, but it can
     * be ignored.
     */
    id?: string;
    /**
     * The current role for the menu item. This will eventually be updated for
     * some of the other `menuitem*` widgets.
     */
    role?: "menuitem" | "button";
    /**
     * The tab index for the menu item. This should always stay at `-1`.
     */
    tabIndex?: number;
}
export declare const MenuItem: React.ForwardRefExoticComponent<MenuItemProps & React.RefAttributes<HTMLLIElement>>;
