import React from 'react'; export interface IAvatar { children?: React.ReactElement; src: string; } export type AvatarContainerProps = React.HTMLAttributes & { /** * If rendering multiple avatars, the maximum number of avatars to display before truncating */ limit?: number; /** * If not rendering avatars inside the container, the number of avatars to display in the count */ amount?: number; }; export declare const Avatar: React.ForwardRefExoticComponent & { /** * Optional source of the image to display */ src?: string; /** * Optional children to display if not using a direct image source string */ width?: number | string; height?: number | string; square?: boolean; letterFallback?: string; } & React.RefAttributes>; //# sourceMappingURL=Avatar.d.ts.map