export declare class User {
    id: string;
    email: string;
    password: string;
    twoFactorAuthenticationSecret?: string;
    isTwoFactorEnabled: boolean;
}
