/// <reference types="react" />
import { IdProps } from "./interface/IdProps";
import { StyleProps } from "./interface/StyleProps";
export interface MenuProps extends StyleProps, React.PropsWithChildren<any>, IdProps {
    open?: boolean;
    modal?: boolean;
    onClose?: () => void;
}
export declare const Menu: ({ id, children, style, className, open, modal, onClose }: MenuProps) => import("react/jsx-runtime").JSX.Element;
