import type { WithElementRef } from 'bits-ui';
import type { HTMLAttributes } from 'svelte/elements';
type $$ComponentProps = WithElementRef<HTMLAttributes<HTMLDivElement>> & {
    avatarClass?: string;
    imageClass?: string;
    fallbackClass?: string;
    users: {
        src?: string;
        alt?: string;
        fallback?: string;
    }[];
    class?: string;
};
declare const AvatarGroup: import("svelte").Component<$$ComponentProps, {}, "ref">;
type AvatarGroup = ReturnType<typeof AvatarGroup>;
export default AvatarGroup;
