import { BoxProps, StackProps, TypographyProps } from '@mui/material';
import { Avatar2Model } from '../AvatarV2';
export interface AvatarTitleDescriptionModel {
    title: string;
    description: string;
    columnGap?: string | number;
    avatarProps: Avatar2Model;
    colorTitle?: string;
    containerProps?: StackProps;
    titleProps?: TypographyProps;
    descriptionProps?: TypographyProps;
    textContainerProps?: BoxProps;
}
