import { WhatsAppText } from './WhatsAppText.js'; import '../AbstractTextMessage.js'; import '../AbstractMessage.js'; import '../../enums/Channels.js'; import '../../enums/MessageTypes.js'; import '../../types/MessageParams.js'; import '../../types/MessageParamsText.js'; import '../../types/Channels/WhatsApp/WhatsAppParams.js'; import '../../types/Channels/WhatsApp/WhatsAppTextParams.js'; /** * @deprecated please use the WhatsAppText class instead * * @group WhatsApp */ declare class Text extends WhatsAppText { /** * Constructs a new `Text` instance for WhatsApp. * * @param {string} text - The text message content. * @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(text: string, to: string, from: string, clientRef?: string); } export { Text };