/** * SPDX-FileCopyrightText: (c) 2026 Liferay, Inc. https://liferay.com * SPDX-License-Identifier: LGPL-2.1-or-later OR LicenseRef-Liferay-DXP-EULA-2.0.0-2023-06 */ /// declare type Props = { /** * Flag to estimate the default height of a list item in pixels. */ estimateSize: number; /** * Property to render content with dynamic data. */ items: Array; /** * Add the reference of the parent element that will be used to define the * scroll and get the height of the element for virtualization of the * collection. */ parentRef: React.RefObject; }; export declare function useVirtual({ estimateSize, items, parentRef }: Props): import("@tanstack/virtual-core").Virtualizer; export {};