import { AvatarGroupProps } from '@mui/material';
import { ReactNode } from 'react';
export interface AvatarGroupOutputPropsModel {
    label?: string;
    showBorder?: boolean;
    showBoxShadow?: boolean;
    colorLabel?: string;
    borderColor?: string;
    backgroundColor?: boolean;
    showDivider?: boolean;
    children?: ReactNode | ReactNode[];
    maxAvatars?: number;
    avatarGroupProps?: AvatarGroupProps;
}
