import { SetupPathologyPathologyParameter } from './entities/setup-pathology-pathology_parameter.entity';
import { SetupPathologyPathologyParameterService } from './setup-pathology-pathology_parameter.service';
export declare class SetupPathologyPathologyParameterController {
    private readonly pathology_parameterService;
    constructor(pathology_parameterService: SetupPathologyPathologyParameterService);
    create(pathology_parameterEntity: SetupPathologyPathologyParameter): Promise<{
        [key: string]: any;
    }[]>;
    findAll(): Promise<SetupPathologyPathologyParameterService[]>;
    findOne(id: string): Promise<SetupPathologyPathologyParameterService>;
    update(id: string, pathology_parameterEntity: SetupPathologyPathologyParameter): Promise<{
        [key: string]: any;
    }[]>;
    remove(id: string, Hospital_id: number): Promise<{
        status: string;
        message: string;
    }>;
    findPathologyParameterSearch(search?: string, limit?: number, page?: number): Promise<{
        status_code: string;
        status: string;
        message: string;
        data: import("./dto/setup-pathology-pathology_parameter.dto").PathologyParameterDto[];
        total: number;
    } | {
        status_code: string;
        status: string;
        message: string;
        data?: undefined;
        total?: undefined;
    }>;
    findPathologyParametersSearch(search?: string, limit?: number, page?: number): Promise<{
        status_code: string;
        status: string;
        message: string;
        data: import("./dto/setup-pathology-pathology_parameter.dto").PathologyParameterDto[];
        total: number;
    } | {
        status_code: string;
        status: string;
        message: string;
        data?: undefined;
        total?: undefined;
    }>;
}
