import { SetupHumanResourceDepartmentService } from './setup-human_resource-department.service';
import { SetupHumanResourceDepartment } from './entities/setup-human_resource-department.entity';
export declare class SetupHumanResourceDepartmentController {
    private readonly setupHumanResourceDepartmentService;
    constructor(setupHumanResourceDepartmentService: SetupHumanResourceDepartmentService);
    create(departmentEntity: SetupHumanResourceDepartment): Promise<{
        [key: string]: any;
    }[]>;
    findAll(): Promise<SetupHumanResourceDepartment[]>;
    findOne(id: string): Promise<SetupHumanResourceDepartment>;
    update(id: string, departmentEntity: SetupHumanResourceDepartment): Promise<{
        [key: string]: any;
    }[]>;
    remove(id: string, Hospital_id: number): Promise<{
        status: string;
        message: string;
    }>;
    HRDepartment(search: string): Promise<SetupHumanResourceDepartment[]>;
    findAllDepart(limit?: number, page?: number): Promise<{
        status_code: string;
        status: string;
        message: string;
        data: import("./dto/setup-human_resource-department.dto").DepartmentDto[];
        total: number;
    } | {
        status_code: string;
        status: string;
        message: string;
        data?: undefined;
        total?: undefined;
    }>;
    findDepartmentsearch(search?: string, limit?: number, page?: number): Promise<{
        status_code: string;
        status: string;
        message: string;
        data: import("./dto/setup-human_resource-department.dto").DepartmentDto[];
        total: number;
    } | {
        status_code: string;
        status: string;
        message: string;
        data?: undefined;
        total?: undefined;
    }>;
}
