import { InjectionKey } from 'vue'; export type AvatarSize = "lg" | "md" | "sm" | "xs"; export interface AvatarProps { src?: string; alt?: string; size?: AvatarSize; width?: string; height?: string; circle?: boolean; } export type AvatarGroupProps = Omit; export declare const AvatarGroupContextInjectionKey: InjectionKey;