export declare abstract class UserCustomer { addresses: Address[]; email: string; birthday?: string; firstName: string; gender: string; id: number; lastName: string; phoneNumber?: string; subscribedToNewsletter: boolean; user: User; token: string; image: string; verified: number | boolean; } export declare class Address { city: string; countryCode: string; firstName: string; id: number; lastName: string; phoneNumber: string; phoneKey: string; postcode: string; street: string; } declare class User { enabled: boolean; id: number; roles: string[]; username: string; usernameCanonical: string; verifiedAt?: string; } export {};