import { TypographyProps } from '@mui/material';
import { ReactNode } from 'react';
import { Avatar2Model } from '../AvatarV2';
export interface AvatartextOutputPropsModel {
    label: string;
    showBorder?: boolean;
    showBoxShadow?: boolean;
    backgroundColor?: string;
    showDivider?: boolean;
    urlImg?: string;
    avatarProps?: Avatar2Model;
    children?: ReactNode;
    titleProps?: TypographyProps;
}
