import { RoleModel } from '../role.model';
export declare class Principal {
    username: string | null;
    firstName: string | null;
    middleName: string | null;
    lastName: string | null;
    fullName: string | null;
    gender: string | null;
    email: string | null;
    phone: string | null;
    voAuthentication: string | null;
    orgId: number | null;
    orgCode: string | null;
    orgName: string | null;
    orgType: string | null;
    orgForm: string | null;
    orgSapId: number | null;
    orgPath: string | null;
    orgIsApproveVo: boolean | null;
    roles: RoleModel[] | null;
    mustChangePassword: boolean | null;
}
