/**----------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { Message } from './message.interface'; /** * Describes the arguments for the `sendMessage` event. */ export declare class SendMessageEvent { /** * Represents the message that contains the metadata and user input. * * The Chat does not automatically add the message to its data. For more information, see [Data Binding](https://www.telerik.com/kendo-angular-ui/components/conversational-ui/chat/data-binding). */ message: Message; /** * @hidden */ constructor(message: Message); } /** * Describes the arguments for the `resendMessage` event. */ export interface ResendMessageEvent { /** * Represents the message that failed to send. */ message: Message; }