import type { AvatarProps, BasicConfig, CustomElement } from '..'; export interface AvatarGroupProps { /** 头像数据 */ data?: Omit[]; /** 头像尺寸 * @default 'normal' */ size?: BasicConfig['size']; /** 最多显示个数 */ maxCount?: number; /** 自定义类名 */ class?: string; /** 自定义样式表 */ css?: string; } export type AvatarGroupElement = CustomElement; declare function AvatarGroup(_props: AvatarGroupProps): import("solid-js").JSX.Element; declare namespace AvatarGroup { var registry: () => void; } export default AvatarGroup;