import { ODataCollectionView } from './ODataCollectionView'; /** * An {@link ODataCollectionView} that loads data incrementally for infinite * scrolling. The first load fetches one chunk; {@link loadMore} appends the next * chunk until every row has been retrieved. */ export declare class ODataVirtualCollectionView> extends ODataCollectionView { private _allLoaded; /** True once every server row has been loaded. */ get allLoaded(): boolean; load(): void; /** Fetch and append the next chunk. No-op while loading or once all loaded. */ loadMore(): void; }