/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ import { ListViewProps } from './interfaces/ListViewProps.js'; import { ListViewEvent } from './events.js'; import * as React from 'react'; /** @hidden */ interface ListViewHandle { onScroll?: (event: ListViewEvent) => void; props: ListViewProps; context: {}; state: {}; refs: {}; } export declare const ListView: React.ForwardRefExoticComponent>; /** @hidden */ export type ListView = ListViewHandle; export {};