import { Contact } from './contact';
export declare class UserProfile {
    AdditionalPhoneNumber: string;
    Address: string;
    Avatar: string;
    BirthDate: string;
    City: string;
    CityId: string;
    contacts: Contact[];
    Country: string;
    CountryId: string;
    CountryCode: string;
    ExternalResourcesJson?: any;
    FirstName: string;
    Id: string;
    Language: string | null;
    LastName: string;
    PhoneNumber: string;
    Skype: string;
    UserId: string;
    NickName?: any;
    UseNickName: boolean;
    IsAccountLocked: boolean;
    IsTwoFactorEnabled: boolean;
}
