type AvatarSize = 'xs' | 'sm' | 'md' | 'lg' | 'xl' | '2xl'; type Status = 'online' | 'offline' | 'busy' | 'away'; interface AvatarLabelProps { name: string; description?: string; avatar?: string; size?: AvatarSize; status?: Status; class?: string; onclick?: () => void; } declare const AvatarLabel: import("svelte").Component; type AvatarLabel = ReturnType; export default AvatarLabel;