export declare type Collection = { /** * Contract address of the collection */ address: string; /** * The creator contract of this collection */ creator?: string; /** * Whether the collection is flagged as spam or not */ isSpam?: boolean; /** * Name of the collection */ name?: string; /** * Number of assets in this collection */ numAssets?: number | null; /** * The current owner of this collection */ owner?: string; /** * Small preview image of the collection */ smallPreviewImageUrl?: string; /** * This field is deprecated. Use 'smallPreviewImageUrl' instead. */ small_preview_image_url?: string; /** * Reasons why the collection is flagged as spam. Empty if the collection is not a spam */ spamReasons?: Array; /** * Symbol of the collection */ symbol?: string; /** * URL to collection preview on center.app */ url?: string; };