import * as _yamada_ui_core from '@yamada-ui/core';
import { HTMLUIProps } from '@yamada-ui/core';

interface MenuGroupProps extends HTMLUIProps {
    /**
     * The label of the group.
     */
    label?: string;
    /**
     * Props for menu group element.
     */
    labelProps?: HTMLUIProps<"header">;
}
declare const MenuGroup: _yamada_ui_core.Component<"div", MenuGroupProps>;

export { MenuGroup, type MenuGroupProps };
