import { AvatarDeclarations } from '../Avatar/Avatar.types'; export declare namespace IAvatarGroup { interface Props extends Pick { borderWidth?: number; borderColor?: string; boxShadow?: string; avatars?: AvatarDeclarations.Props[]; size?: AvatarDeclarations.Size; } interface StyledAvatarContainer { height: string; width: string; } interface StyledAvatarItem { borderWidth?: string; borderColor?: string; boxShadow?: string; index?: number; } }