import { DataSource } from 'typeorm';
import { EmrNewLogin } from './entities/emr_new-login.entity';
export declare class EmrNewLoginService {
    private readonly connection;
    private readonly dynamicConnection;
    constructor(connection: DataSource, dynamicConnection: DataSource);
    generateRandomPassword(length?: number): string;
    create(Entity: EmrNewLogin): Promise<{
        status: string;
        message: string;
        details: {
            Hospital_id: any;
            Hospital_name: any;
            Hospital_address: any;
            Hospital_logo: any;
            Hospital_image: any;
            Staff_id: any;
            staffImage: any;
            username: string;
            password: string;
            role_id: any;
            staffName: any;
            role_name: any;
            resetStatus: any;
        };
    } | {
        status: string;
        message: any;
        details?: undefined;
    }>;
    ForgetPassword(Entity: EmrNewLogin): Promise<any>;
    ResetPassword(Entity: EmrNewLogin): Promise<any>;
}
