export declare class User {
    id: number | string;
    username: string;
    email: string;
    password: string;
    salt?: string;
    githubId?: string;
    googleId?: string;
    provider?: string;
    microsoftId?: string;
    providerId?: string;
    profileUrl?: string;
    createdAt?: Date;
    updatedAt?: Date;
    constructor();
}
