import React from 'react'; import { Rarity } from '@dcl/schemas/dist/dapps/rarity'; import './AssetImage.css'; export declare type AssetImageProps = { name: string; rarity: Rarity; src: string; className?: string; }; export declare const AssetImage: (props: AssetImageProps) => React.JSX.Element;