import { AvatarProps, TypographyProps } from '@mui/material';
export interface AvatarTextFieldPropsModel {
    text?: string;
    urlImg?: string;
    titleTypographyProps?: TypographyProps;
    descriptionTypographyProps?: TypographyProps;
    isImage?: boolean;
    avatarProps?: AvatarProps;
    direction?: 'row' | 'row-reverse' | 'column' | 'column-reverse';
    spacing?: number;
    description?: string;
}
