/**-----------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
/**
 * Arguments for the `loadMore` event of the Chat.
 * Fires when the user scrolls near the edge of the rendered message window in endless scroll mode.
 */
export interface ChatLoadMoreEvent {
    /**
     * The inclusive start index into the full messages array.
     */
    startIndex: number;
    /**
     * The exclusive end index into the full messages array.
     */
    endIndex: number;
}
