interface AvatarProps { address: string; loading?: boolean; imageUrl?: string | null; size: number; } export declare function Avatar({ address, imageUrl, loading, size }: AvatarProps): import("react/jsx-runtime").JSX.Element; export {};