import { PathologyTestService } from './pathology_test.service';
import { PathologyTest } from './entities/pathology_test.entity';
export declare class PathologyTestController {
    private readonly pathologyTestService;
    constructor(pathologyTestService: PathologyTestService);
    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<{
        status: string;
        message: string;
    }>;
    updatePathology(id: number, createPathologyTest: PathologyTest): Promise<{
        'data ': {
            status: string;
            messege: string;
            updated_values: any;
        };
    }[]>;
    removePathologyparameterdetails(id: number, hospital_id: number): Promise<{
        status: string;
        message: string;
    }>;
    updatePathologyParameterDetails(createPathologyTest: PathologyTest[]): Promise<{
        status: string;
        message: string;
    }>;
}
