/** * SPDX-FileCopyrightText: © 2021 Liferay, Inc. * SPDX-License-Identifier: BSD-3-Clause */ import React from 'react'; import { ICollectionProps } from './Collection'; interface ITreeViewGroupProps> extends ICollectionProps, Omit, 'children'> { } export declare function Group>({ children, className, items, ...otherProps }: ITreeViewGroupProps): JSX.Element; export declare namespace Group { var displayName: string; } export {};