/** * * A set of Avatars can be displayed together using the AvatarGroup component. * * [Live Demo](https://www.primereact.org/avatar/) * * @module avatargroup * */ import * as React from 'react'; import { PassThroughType } from '../utils/utils'; export declare type AvatarGroupPassThroughType = PassThroughType; /** * Custom passthrough(pt) option method. */ export interface AvatarGroupPassThroughMethodOptions {} /** * Custom passthrough(pt) options. * @see {@link AvatarGroupProps.pt} */ export interface AvatarGroupPassThroughOptions { /** * Uses to pass attributes to the root's DOM element. */ root?: AvatarGroupPassThroughType>; } /** * Defines valid properties in Avatar component. In addition to these, all properties of HTMLDivElement can be used in this component. * @group Properties */ export interface AvatarGroupProps extends Omit, HTMLDivElement>, 'ref'> { /** * Used to get the child elements of the component. * @readonly */ children?: React.ReactNode | undefined; /** * Uses to pass attributes to DOM elements inside the component. * @type {AvatarGroupPassThroughOptions} */ pt?: AvatarGroupPassThroughOptions; } /** * **PrimeReact - AvatarGroup** * * _A set of Avatars can be displayed together using the AvatarGroup component._ * * [Live Demo](https://www.primereact.org/avatargroup/) * --- --- * ![PrimeReact](https://primefaces.org/cdn/primereact/images/logo-100.png) * * @group Component */ export declare class AvatarGroup extends React.Component { /** * Used to get container element. * @return {HTMLDivElement} Container element */ public getElement(): HTMLDivElement; }