type AvatarSize = 'xs' | 'sm' | 'md' | 'lg' | 'xl' | '2xl'; type AvatarStatus = 'online' | 'offline' | 'busy' | 'away' | null; interface AvatarProps { src?: string; alt?: string; name?: string; size?: AvatarSize; status?: AvatarStatus; /** Soft outline around the avatar (disable inside AvatarGroup) */ ringed?: boolean; class?: string; } declare const Avatar: import("svelte").Component; type Avatar = ReturnType; export default Avatar;