export declare class User {
    id: number;
    name: string;
    stuid: string;
    token: string;
    duty: string;
    email: string;
    utype: number;
    utypeName?: string;
    birthday?: string;
    college?: string;
    department?: string;
    fullhead?: string;
    head?: string;
    ifkey?: number;
    loginip?: string;
    majorclass?: string;
    online?: number;
    phone?: string;
    photo?: null | string;
    position?: number;
    positionName?: string;
    qq?: string;
    registerdate?: string;
    sex?: string;
    sexName?: string;
    signcount?: number;
    ulevel?: number;
    wxid?: null | string;
    qqid?: null | string;
    xgtoken?: null | string;
    interviewform?: null | string;
    constructor(user?: Partial<User>);
    static createUser(user?: Partial<User>): User;
}
export default User;
