export declare class UserFullDetailsDTO { 'requestId'?: string; 'username'?: string; 'nickname'?: string; 'givenName'?: string; 'middleName'?: string; 'familyName'?: string; 'preferredUsername'?: string; 'profile'?: string; 'picture'?: string; 'website'?: string; 'email'?: string; 'gender'?: string; 'birthdate'?: Date; 'zoneinfo'?: string; 'locale'?: string; 'phoneNumber'?: string; 'updatedAt'?: Date; 'platform'?: string; 'enabled'?: boolean; 'locked'?: boolean; 'expiresAt'?: Date; 'passwordExpiresAt'?: Date; 'address'?: string; 'password'?: string; static readonly discriminator: string | undefined; static readonly mapping: { [index: string]: string; } | undefined; static readonly attributeTypeMap: Array<{ name: string; baseName: string; type: string; format: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; format: string; }[]; constructor(); }