/// import { Asset } from '@fridaygame/client'; import { WrapperProps } from '@cezembre/fronts'; import { To } from 'react-router-dom'; import { QuotationHistory } from '@fridaygame/client/dist/trading/quotations/model'; export type AssetThumbnailShape = 'box' | 'text'; export type AssetThumbnailSize = 'narrow' | 'small' | 'medium' | 'big' | 'large' | 'full'; export type AssetThumbnailTheme = 'default' | 'darker' | 'lighter'; export interface AssetThumbnailProps extends WrapperProps { asset: Asset; quotationHistory?: QuotationHistory; shape?: AssetThumbnailShape; size?: AssetThumbnailSize; theme?: AssetThumbnailTheme; showQuotation?: boolean; secondaryTo?: To; } export declare const AssetThumbnail: import("react").ForwardRefExoticComponent>;