/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
import { TreeListComponent } from "../treelist.component";
/**
 * Arguments for the [`scrollBottom`](slug:api_treelist_treelistcomponent#toc-scrollbottom) event. [See example](slug:scrollmmodes_grid#toc-endless-scrolling).
 */
export interface ScrollBottomEvent {
    /**
     * The instance of the TreeListComponent.
     */
    sender: TreeListComponent;
}
