import { InjectionKey } from 'vue';
import { AvatarShape } from './interface';
export interface AvatarGroupContext {
    size: number | undefined;
    shape: AvatarShape;
    autoFixFontSize: boolean;
    zIndexAscend: boolean;
    total: number;
}
export declare const avatarGroupInjectionKey: InjectionKey<AvatarGroupContext>;
