import React from 'react';
export type AvatarProps = {
    address: string;
    loading?: boolean;
    imageUrl?: string | null;
    size: number;
};
export declare function Avatar({ address, imageUrl, loading, size }: AvatarProps): React.JSX.Element;
