export declare class LoginDto {
    email: string;
    password: string;
    deviceId?: string;
    isRooted?: boolean;
}
