import { EnumGender } from "../contacts";
import { IExternalProfile } from "./external-profile";
import { EnumExternalUserType } from "./external-user-type.enum";
export declare class ExternalUser {
    external_userid: string;
    position: string;
    avatar: string;
    corp_name: string;
    corp_full_name: string;
    type: EnumExternalUserType;
    gender: EnumGender;
    unionid: string;
    external_profile: IExternalProfile;
    externalUserId: string;
    corpName: string;
    corpFullName: string;
    unionId: string;
    externalProfile: IExternalProfile;
}
