export interface CryptoLogoProps { /** * The background color of the crypto logo */ bgColor?: string; /** * The name of the blockchain */ chain: chainType; /** * The size of the component */ size?: sizeType; } export declare type chainType = 'arbitrum' | 'avalanche' | 'binance' | 'ethereum' | 'fantom' | 'polygon'; export declare type sizeType = string | number;