import { MessageType } from '../../interfaces/Messenger/MessageType.js'; import { VideoObject } from '../../interfaces/VideoObject.js'; import { MessengerVideo } from './MessengerVideo.js'; import '../../types/Channels/Messenger/MessengerType.js'; import '../../enums/Messenger/MessengerCategory.js'; import '../AbstractVideoMessage.js'; import '../AbstractMessage.js'; import '../../enums/Channels.js'; import '../../enums/MessageTypes.js'; import '../../types/MessageParams.js'; import '../../types/MessageParamsVideo.js'; import '../../types/MessageVideoType.js'; import '../../types/Channels/Messenger/MessengerVideoParams.js'; import '../../types/Channels/Messenger/MessengerParams.js'; /** * Represents a text message for the Messenger channel. * * @deprecated Please use the MessengerText class instead. * * @group Messenger */ declare class Video extends MessengerVideo { /** * Constructs a new `Text` instance. * * @param {VideoObject} video - The text content of the message. * @param {string} to - The recipient of the message. * @param {string} from - The sender of the message. * @param {MessageType} messenger - The messenger information for the message. * @param {string} clientRef - The client reference for the message. */ constructor(video: VideoObject, to: string, from: string, messenger?: MessageType, clientRef?: string); } export { Video };