import { DataSource } from 'typeorm';
import { PathologyTest } from './entities/pathology_test.entity';
export declare class PathologyTestService {
    private readonly connection;
    private readonly dynamicConnection;
    constructor(connection: DataSource, dynamicConnection: DataSource);
    create(createPathologyTest: PathologyTest): Promise<{
        'data ': {
            status: string;
            messege: string;
            Pathology_Values: any;
        };
    }[]>;
    createpathologyParameterDetails(createPathologyTest: PathologyTest[]): Promise<{
        status: string;
        message: string;
        data: any[];
    }>;
    removePathology(id: number, hospital_id: number): Promise<{
        [key: string]: any;
    }[]>;
    updatePathology(id: number, createPathologyTest: PathologyTest): Promise<{
        'data ': {
            status: string;
            messege: string;
            updated_values: any;
        };
    }[]>;
    removePathologyparameterdetails(id: number, hospital_id: number): Promise<{
        [key: string]: any;
    }[]>;
    updatePathologyParameterDetails(createPathologyTest: PathologyTest[]): Promise<{
        status: string;
        message: string;
    }>;
}
