type AvatarProps = { name?: string; src?: string; alt?: string; color?: string; }; type Size = 'sm' | 'md' | 'lg' | number; type Props = { avatars: ReadonlyArray; /** Max avatars shown before collapsing to "+N". */ max?: number; size?: Size; }; declare const SvAvatarGroup: import("svelte").Component; type SvAvatarGroup = ReturnType; export default SvAvatarGroup;