export declare type Asset = { address: string; collectionName?: string; /** * This field is deprecated. Use 'collectionName' instead. */ collection_name?: string; /** * preview image URL (medium-sized) */ mediumPreviewImageUrl?: string | null; /** * Value of any type, including null */ metadata?: any; name?: string; /** * preview image URL (small-sized) */ smallPreviewImageUrl?: string | null; /** * This field is deprecated. Use 'smallPreviewImageUrl' instead. */ small_preview_image_url?: string | null; tokenId: string; /** * This field is deprecated. Use 'tokenID' instead. */ token_id: string; url?: string; };