type MessageVcardType = { /** * The URL of the vCard attachment. */ url: string; /** * Additional text to accompany the vCard. */ caption?: string; }; /** * Represents a vCard message type. */ type MessageVcardParams = { vcard: MessageVcardType; }; export type { MessageVcardParams, MessageVcardType };