export declare class Customer { tenantId: string; firstName: string; lastName: string; avatar: string; gender: string; id: string; social: string; badges: any; addresses: any; telephones: any; storeId: string; userId: string; static fromJson(obj: any): Customer; toJson(): any; constructor(tenantId: string, firstName: string, lastName: string, avatar: string, gender: string, id: string, social: string, badges: any, addresses: any, telephones: any, storeId: string, userId: string); getTenantId(): string; getFirstName(): string; getLastName(): string; getAvatar(): string; getGender(): string; getId(): string; getSocial(): string; getBadges(): any; getEngaged(): any; getVip(): any; getInstore(): any; getAddresses(): any; getTelephones(): any; getStoreId(): string; getUserId(): string; }