import type * as Pinnacle from "../index.mjs"; export interface VCardData extends Pinnacle.VcardContent { /** File associated to the contact. */ file: VCardData.File_; } export declare namespace VCardData { /** * File associated to the contact. */ interface File_ { /** Presigned URL to download the contact card. */ url: string; /** Additional information about the download URL. */ metadata: File_.Metadata; } namespace File_ { /** * Additional information about the download URL. */ interface Metadata { /** * When the download URL expires in ISO 8601 format.
* * Null indicates that it is permanent. */ expiresAt: string | null; } } }