import React from 'react';
import { type BoxProps } from '../Box/Box';
interface FunAssetAvatarProps {
    assetSrc?: string;
    assetTicker?: string;
    assetName: string;
    assetIconSize?: BoxProps['height'] & BoxProps['width'];
    chainId?: string | number;
    prioritizeDefaults?: boolean;
    hideIfUnknown?: boolean;
    largeChainIcon?: boolean;
}
export declare function FunAssetAvatar({ assetSrc, assetTicker, assetName, assetIconSize, chainId, prioritizeDefaults, hideIfUnknown, largeChainIcon, }: FunAssetAvatarProps): React.JSX.Element | null;
export {};
