import { CometChatOption } from './CometChatOption'; /** * @class CometChatMessageOption * @description CometChatMessageOption class is used for defining the message options. * * @param {string} id * @param {string} title * @param {string} iconURL * @param {any} onClick * @param {string} titleFont * @param {string} titleColor * @param {string} backgroundColor * @param {string} iconTint */ export declare class CometChatMessageOption extends CometChatOption { constructor({ id, title, iconURL, onClick, titleFont, titleColor, backgroundColor, iconTint }: { id?: string | undefined; title?: string | undefined; iconURL?: string | undefined; onClick?: any; titleFont?: string | undefined; titleColor?: string | undefined; backgroundColor?: string | undefined; iconTint?: string | undefined; }); } //# sourceMappingURL=CometChatMessageOption.d.ts.map