import { DataSource } from "typeorm";
import { SetupPathologyPathologyParameter } from "./entities/setup-pathology-pathology_parameter.entity";
import { CountDto } from "./dto/setup-pathology-pathology_parameter.dto";
export declare class SetupPathologyPathologyParameterService {
    private readonly connection;
    private readonly dynamicConnection;
    constructor(connection: DataSource, dynamicConnection: DataSource);
    create(pathology_parameterEntity: SetupPathologyPathologyParameter): Promise<{
        [key: string]: any;
    }[]>;
    findAll(): Promise<SetupPathologyPathologyParameterService[]>;
    findOne(id: string): Promise<SetupPathologyPathologyParameterService | null>;
    update(id: string, pathology_parameterEntity: SetupPathologyPathologyParameter): Promise<{
        [key: string]: any;
    }[]>;
    remove(id: string, Hospital_id: number): Promise<{
        [key: string]: any;
    }[]>;
    findPathologyParameterSearch(search: string, limit: number, page: number): Promise<CountDto>;
    findPathologyParametersSearch(search: string, limit: number, page: number): Promise<CountDto>;
}
