import { DataSource } from "typeorm";
import { SetupPathologyUnit } from "./entities/setup-pathology-unit.entity";
import { CountDto } from './dto/setup-pathology-unit.dto';
export declare class SetupPathologyUnitService {
    private readonly connection;
    private readonly dynamicConnection;
    constructor(connection: DataSource, dynamicConnection: DataSource);
    create(unitEntity: SetupPathologyUnit): Promise<{
        [key: string]: any;
    }[]>;
    findAll(): Promise<SetupPathologyUnit[]>;
    update(id: string, unitEntity: SetupPathologyUnit): Promise<{
        [key: string]: any;
    }[]>;
    remove(id: string, Hospital_id: number): Promise<{
        [key: string]: any;
    }[]>;
    findPathologyUnitSearch(search: string, limit: number, page: number): Promise<CountDto>;
    findPathologyUnitsSearch(search: string, limit: number, page: number): Promise<CountDto>;
}
