import type { SxProps, Theme } from "@mui/material"; export interface InsumoAvatarItem { id: string | number; name?: string; imageUrl?: string | null; quantity?: number | null; unit?: string | null; fromActivity?: boolean; inventoryItem?: { name?: string; imageUrl?: string | null; quantity?: number | null; unit?: string | null; item?: { imageUrl?: string | null; }; }; } export interface InsumosAvatarGroupProps { items: InsumoAvatarItem[]; max?: number; avatarSize?: number; showSourceGroups?: boolean; showQuantityBadge?: boolean; emptyText?: string; sx?: SxProps; }