import { SetupPathologyPathologyCategoryService } from './setup-pathology-pathology_category.service';
import { SetupPathologyPathologyCategory } from './entities/setup-pathology-pathology_category.entity';
export declare class SetupPathologyPathologyCategoryController {
    private readonly setupPathologyPathologyCategoryService;
    constructor(setupPathologyPathologyCategoryService: SetupPathologyPathologyCategoryService);
    create(pathology_category_entity: SetupPathologyPathologyCategory): Promise<{
        [key: string]: any;
    }[]>;
    findAll(): Promise<SetupPathologyPathologyCategory[]>;
    findOne(id: string): Promise<SetupPathologyPathologyCategory>;
    update(id: string, pathology_category_entity: SetupPathologyPathologyCategory): Promise<{
        [key: string]: any;
    }[]>;
    remove(id: string, Hospital_id: number): Promise<{
        [key: string]: any;
    }[]>;
    findPathologyCategorySearch(search?: string, limit?: number, page?: number): Promise<{
        status_code: string;
        status: string;
        message: string;
        data: import("./dto/setup-pathology-pathology_category.dto").PathologyCategoryDto[];
        total: number;
    } | {
        status_code: string;
        status: string;
        message: string;
        data?: undefined;
        total?: undefined;
    }>;
    findPathologyCategorysSearch(search?: string, limit?: number, page?: number): Promise<{
        status_code: string;
        status: string;
        message: string;
        data: import("./dto/setup-pathology-pathology_category.dto").PathologyCategoryDto[];
        total: number;
    } | {
        status_code: string;
        status: string;
        message: string;
        data?: undefined;
        total?: undefined;
    }>;
}
