import type { AvatarProps } from "@components/Avatar/Avatar.interface"; import { ClassName } from "@helpers/types"; interface UserInterface { name: string; src: string; alt?: string; } export interface AvatarGroupProps extends Pick, ClassName { avatars: UserInterface[]; visibleAvatars?: number; } export {};