importtype { PropsWithChildren, ReactNode } from'react';
interfaceGroupProps {
/**
* The label for the group of menu items
*/label?: ReactNode;
}
declarefunctionGroup({ children, label, }: PropsWithChildren<GroupProps>): JSX.Element;
exportdefaultGroup;