/*! * Copyright (c) Microsoft Corporation. * Licensed under the MIT License. */ export interface Props { label: string; labelCount?: string; children?: React.ReactNode; className?: string; } export declare function Group(props: Props): JSX.Element;