import { EmrNewLoginService } from './emr_new-login.service';
import { EmrNewLogin } from './entities/emr_new-login.entity';
import { Response } from 'express';
export declare class EmrNewLoginController {
    private readonly emrNewLoginService;
    constructor(emrNewLoginService: EmrNewLoginService);
    create(Entity: EmrNewLogin, res: Response): Promise<Response<any, Record<string, any>>>;
    ForgotPassword(Entity: EmrNewLogin, res: Response): Promise<Response<any, Record<string, any>>>;
    resetPassword(Entity: EmrNewLogin, res: Response): Promise<Response<any, Record<string, any>>>;
}
