import { ImageObject } from '../../interfaces/ImageObject.js'; import { MMSImage } from './MMSImage.js'; import '../AbstractImageMessage.js'; import '../AbstractMessage.js'; import '../../enums/Channels.js'; import '../../enums/MessageTypes.js'; import '../../types/MessageParams.js'; import '../../types/MessageParamsImage.js'; import '../../types/MessageImageType.js'; /** * Represents an image message for the MMS channel. * * @deprecated Please use the MMSImage class instead. * * @group MMS */ declare class Image extends MMSImage { /** * Constructs a new `Image` instance for the MMS channel. * * @param {ImageObject} image - The image content of the message. * @param {string} to - The recipient of the message. * @param {string} from - The sender of the message. * @param {string} clientRef - The client reference for the message. */ constructor(image: ImageObject, to?: string, from?: string, clientRef?: string); } export { Image };