/**
 * Person degree
 * 个人学位
 */
export declare enum PersonDegree {
    /**
     * Pre-bachelor
     * 副学士
     */
    PreBachelor = 1,
    /**
     * Bachelor
     * 学士
     */
    Bachelor = 2,
    /**
     * Master
     * 硕士
     */
    Master = 3,
    /**
     * Doctor
     * 博士
     */
    Doctor = 4
}
