import { CustomPayload } from '../../interfaces/WhatsApp/CustomPayload.js'; import { WhatsAppCustom } from './WhatsAppCustom.js'; import '../AbstractMessage.js'; import '../../enums/Channels.js'; import '../../enums/MessageTypes.js'; import '../../types/MessageParams.js'; import '../../types/Channels/WhatsApp/WhatsAppParams.js'; import '../../types/Channels/WhatsApp/WhatsAppCustomParams.js'; import '../../types/Channels/WhatsApp/WhatsAppCustomType.js'; /** * @deprecated Please use WhatsAppCustom class instead * * @group WhatsApp */ declare class CustomMessage extends WhatsAppCustom { /** * Constructs a new `CustomMessage` instance for WhatsApp. * * @param {CustomPayload} custom - The custom payload for the message. * @param {string} to - The recipient's WhatsApp number. * @param {string} from - The sender's WhatsApp number. * @param {string} clientRef - (Optional) A unique client reference for the message. */ constructor(custom: CustomPayload, to: string, from: string, clientRef?: string); } export { CustomMessage };