import { SizeType } from '../../basic';
import { GraphicFitType as AvatarFit } from '../../graphic';

type AvatarShape = 'circle' | 'square';

type AvatarSize = SizeType | number;

export { AvatarShape, AvatarSize, AvatarFit };
