/// import { BoxProps } from '@mui/material'; import { AssetInterface, CollectionInterface } from '../interfaces'; interface AssetCardProps extends BoxProps { asset: AssetInterface | undefined; collection: CollectionInterface | undefined; } export declare const AssetCard: ({ asset, collection, ...props }: AssetCardProps) => JSX.Element; export {};