import React from 'react';
export interface MenuGroupProps {
    /**
     * The label of the group
     */
    label?: string;
    /**
     * The children of the component
     */
    children?: React.ReactNode;
}
