export declare type TInventoryProvider = 'alchemy' | 'useWinter'; export interface IInventory { collectionName: string; items: IInventoryItem[]; totalItems: number; } export interface IInventoryItem { preview: { image: string; }; nft: { animationUrl: string; image: string; name: string; tokenId: string; }; } //# sourceMappingURL=nft.d.ts.map