import * as React from 'react'; import { OverrideProps } from '@mui/types'; import { AvatarProps } from '../Avatar/Avatar.types'; import { CreateSlotsAndSlotProps, SlotCommonProps, SlotProps } from '../types/slot'; import { ApplyColorInversion } from '../types/colorSystem'; export type AvatarGroupSlot = 'root'; export interface AvatarGroupSlots { /** * The component that renders the root. * @default 'div' */ root?: React.ElementType; } export type AvatarGroupSlotsAndSlotProps = CreateSlotsAndSlotProps; }>; export interface AvatarGroupTypeMap

{ props: P & Pick & AvatarGroupSlotsAndSlotProps; defaultComponent: D; } export type AvatarGroupProps = OverrideProps, D>; export interface AvatarGroupOwnerState extends ApplyColorInversion { }