import type { HTMLAttributes, ReactNode } from 'react';
/**
* Labeled group for children of `role="menu"`.
* `fieldset` is not a valid menu child; use `role="group"` instead.
*/
export declare function OfficeMenuGroup({ ariaLabel, children, className, ...props }: {
ariaLabel: string;
children: ReactNode;
className?: string;
} & Omit, 'role' | 'aria-label' | 'children'>): import("react").JSX.Element;