import { MessageConfig } from '../../interfaces/Viber/MessageConfig.js'; import { ViberText } from './ViberText.js'; import '../../enums/Viber/MessageCategory.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/Viber/ViberActionParams.js'; import '../../types/Channels/Viber/ViberService.js'; import '../../enums/Viber/ViberCategory.js'; import '../../types/Channels/Viber/ViberAction.js'; import '../../types/Channels/Viber/ViberTextParams.js'; import '../../types/Channels/Viber/ViberParams.js'; /** * Represents a text message for the Viber channel. * * @deprecated Please use the ViberText class instead. * * @group Viber */ declare class Text extends ViberText { /** * Constructs a new `Text` instance for the Viber channel. * * @param {string} text - The text content of the message. * @param {string} to - The recipient's Viber ID. * @param {string} from - The sender's Viber ID. * @param {MessageConfig} viberService - The Viber service configuration. * @param {string} clientRef - The client reference for the message. */ constructor(text: string, to: string, from: string, viberService?: MessageConfig, clientRef?: string); } export { Text };