import { MMSVcard } from './MMSVcard.js'; import '../AbstractVcardMessage.js'; import '../AbstractMessage.js'; import '../../enums/Channels.js'; import '../../enums/MessageTypes.js'; import '../../types/MessageParams.js'; import '../../types/MessageVcardType.js'; import '../../types/MessageParamsVcard.js'; /** * @deprecated Please use MMSVcard instead * * @group MMS */ declare class Vcard extends MMSVcard { /** * Constructs a new `Vcard` instance for the MMS channel. * * @param {string} vcardUrl - The URL of the vCard. * @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(vcardUrl: string, to: string, from: string, clientRef?: string); } export { Vcard };