/**-----------------------------------------------------------------------------------------
* 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 `referencedMessageClick` event of the Chat.
 * Fires when the user clicks a pinned message indicator or a reply preview.
 */
export interface ChatReferencedMessageClickEvent {
    /**
     * The ID of the referenced message that was clicked.
     */
    id: string | number;
    /**
     * Specifies whether the click originated from a pinned message indicator or a reply preview.
     */
    type: 'pinned' | 'reply';
}
