import React from 'react'; import { Item } from '@dcl/schemas'; import { RarityBadgeProps } from '../RarityBadge'; import './CatalogCard.css'; export declare type CatalogCardProps = { asset: Pick; action: React.ReactNode; actionIcon?: React.ReactNode; imagensrc: string; extraInformation: React.ReactNode; notForSale: boolean; price?: string; owners?: string; } & Pick; /** * @deprecated Should start using the same component migrated to UI2. */ export declare const CatalogCard: (props: CatalogCardProps) => React.JSX.Element;