import { TypographyVariants } from '../../Base/Typography/Typography.types'; export type AvatarSize = 'sm' | 'md' | 'lg' | 'xl'; interface AvatarStyle { container: string; char: TypographyVariants; editButton: string; } export type AvatarStyleType = Record; export {};