import { FC } from 'react'; import { CSSProperties } from 'styled-components'; import { GroupMember } from '../global/types.generated'; export type GroupMemberT = Pick; type PropsT = { data: GroupMemberT[]; justify?: string; label: string; containerStyle?: CSSProperties; }; declare const AvatarGroup: FC; export default AvatarGroup;