import { ElementType, ReactNode } from 'react'; import { AvatarGroupOptions } from '@42/core/avatar-group'; export interface AvatarGroupProps extends Partial { /** Element/tag rendered as the controller root. Defaults to `"div"`. */ as?: ElementType; className?: string; children?: ReactNode; /** Fired on `avatar-group:change` — detail: `(no detail)` */ onChange?: (detail: unknown, event: CustomEvent) => void; /** Extra props are forwarded to the rendered `
` element. */ [key: string]: unknown; } export declare function AvatarGroup(props: AvatarGroupProps): import("react").JSX.Element;