import { type ComputedRef, type InjectionKey } from 'vue'; import type { AvatarGroupProps } from '../types'; export declare const avatarGroupInjectionKey: InjectionKey>; export declare function useAvatarGroup(props: { size: AvatarGroupProps['size']; }): { size: ComputedRef<"3xs" | "2xs" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | undefined>; };