import { DataSource } from 'typeorm';
import { Hospital } from './entities/hospital.entity';
import { CryptoService } from 'src/qr-encrpyt/qr-encrpyt.service';
export declare class HospitalsService {
    private readonly connection;
    private readonly dynamicConnection;
    private readonly EncryptedService;
    constructor(connection: DataSource, dynamicConnection: DataSource, EncryptedService: CryptoService);
    findOne(id: string): Promise<any>;
    findoneQR(id: number): Promise<any>;
    EncryptedfindoneQR(id: number): Promise<any>;
    update(id: string, HospitalEntity: Hospital): Promise<{
        data: {
            status: string;
            message: string;
            updated_values: any;
        };
    }[] | {
        status: string;
        messege: string;
        error: any;
    }[]>;
}
