/** React */
import { HtmlHTMLAttributes, ReactNode } from "react";
/** CSS */
import "./index.css";
/** Props */
type Props = HtmlHTMLAttributes & {
children: ReactNode;
};
export declare function MenuItem({ children, ...props }: Props): import("react/jsx-runtime").JSX.Element;
export {};