import React from 'react'; import { DOMProps, QAProps } from '../types'; export interface MenuGroupProps extends DOMProps, QAProps { label?: string; children?: React.ReactNode; } export declare const MenuGroup: React.ForwardRefExoticComponent>;