import * as React from "react"; export interface MenuItemProps extends React.ComponentPropsWithoutRef<"div"> { /** * The content for the MenuItem */ children: string; } /** * @public */ export declare const MenuItem: React.FC;