export type AvatarItem = { key?: string; text?: string; imgSrc?: string; modifiers?: string | string[]; }; export declare const VvAvatarGroupProps: { /** * avatar items */ items: { type: PropType; default: () => never[]; required: boolean; }; toShow: { type: NumberConstructor; default: number; }; totalItems: { type: NumberConstructor; }; avatarModifiers: PropType; modifiers: { type: PropType; default: undefined; }; };