import { CometChat } from "@cometchat/chat-sdk-javascript"; /** * Represents a custom interactive message that extends CometChat's InteractiveMessage class. * @extends CometChat.InteractiveMessage */ export declare class CustomInteractiveMessage extends CometChat.InteractiveMessage { /** * Creates a new instance of CustomInteractiveMessage. * @param receiverId - The ID of the receiver of the message. * @param receiverType - The type of the receiver of the message. * @param json - The JSON object to create the CustomInteractiveMessage object from. */ constructor(receiverId: string, receiverType: string, json: Object); /** * Static method to create a CustomInteractiveMessage object from a JSON object. * @param json - JSON object to create the CustomInteractiveMessage object from. * @returns CustomInteractiveMessage object. */ static fromJSON(json: any): CustomInteractiveMessage; } //# sourceMappingURL=CustomInteractiveMessage.d.ts.map