/** React */
import { HTMLAttributes } from "react";
/** Props */
type Props = HTMLAttributes & {
"data-menu-id"?: string | undefined;
};
export declare function MenuContent({ children, ...props }: Props): import("react/jsx-runtime").JSX.Element | undefined;
export {};