import { DataSource } from "typeorm";
import { SetupPathologyPathologyCategory } from "./entities/setup-pathology-pathology_category.entity";
import { CountDto } from './dto/setup-pathology-pathology_category.dto';
export declare class SetupPathologyPathologyCategoryService {
    private readonly connection;
    private readonly dynamicConnection;
    constructor(connection: DataSource, dynamicConnection: DataSource);
    create(pathology_categoryEntity: SetupPathologyPathologyCategory): Promise<{
        [key: string]: any;
    }[]>;
    findAll(): Promise<SetupPathologyPathologyCategory[]>;
    findOne(id: string): Promise<SetupPathologyPathologyCategory | null>;
    update(id: string, pathology_categoryEntity: SetupPathologyPathologyCategory): Promise<{
        [key: string]: any;
    }[]>;
    remove(id: string, Hospital_id: number): Promise<{
        [key: string]: any;
    }[]>;
    findPathologyCategorySearch(search: string, limit: number, page: number): Promise<CountDto>;
    findPathologyCategorysSearch(search: string, limit: number, page: number): Promise<CountDto>;
}
