import { OnInit } from '@angular/core'; import { AccessoriesType, AvatarStyle, ClothType, EyebrowType, EyeType, FacialHairType, MouthType, SkinColor, TopType } from './types'; export declare class GetAvatarComponent implements OnInit { avatarStyle: AvatarStyle; top: TopType; accessories: AccessoriesType; facialHair: FacialHairType; clothes: ClothType; eyes: EyeType; eyebrows: EyebrowType; mouth: MouthType; skin: SkinColor; width: string; height: string; random: boolean; constructor(); ngOnInit(): void; getOptions(): { avatarStyle: AvatarStyle; top: TopType; accessories: AccessoriesType; facialHair: FacialHairType; clothes: ClothType; eyes: EyeType; eyebrows: EyebrowType; mouth: MouthType; skin: SkinColor; }; private createRandomAvatar; }