import { EventEmitter } from '../../stencil-public-runtime'; import { Message, MessageReactionProps, Widget } from '../../interfaces/common.interface'; import { SENDER_TYPE } from '../../config/constants'; export declare class ChatMessage { private subscriptionRelatedWidgets; text: string; sender: SENDER_TYPE; timestamp: string; widgets: Widget[]; messageId: string; message: Message; showActionButtons: boolean; status: string; sanitizedHtml: string; botMessageUpdate: EventEmitter; messageReaction: EventEmitter; el: HTMLElement; componentWillLoad(): Promise; private handleReaction; private clearSubscriptionDataIfNeeded; private copyMessage; render(): any; }