interface Props { address: string; ensImage?: string | null; ensName?: string | null; size?: 'xs' | 'sm' | 'md' | 'lg' | 'xl'; rounded?: boolean; alt?: string; showBadge?: boolean; } declare const Avatar: import("svelte").Component; type Avatar = ReturnType; export default Avatar;