import * as React from 'react'; export interface MenuGroupProps extends React.HTMLProps { /** Items within group */ children?: React.ReactNode; /** Additional classes added to the MenuGroup */ className?: string; /** Group label */ label?: string; /** ID for title label */ titleId?: string; /** Forwarded ref */ innerRef?: React.Ref; } export declare const MenuGroup: React.ForwardRefExoticComponent & React.RefAttributes>; //# sourceMappingURL=MenuGroup.d.ts.map