import { SetupHumanResourceSpecialistService } from './setup-human_resource-specialist.service';
import { SetupHumanResourceSpecialist } from './entities/setup-human_resource-specialist.entity';
export declare class SetupHumanResourceSpecialistController {
    private readonly setupHumanResourceSpecialistService;
    constructor(setupHumanResourceSpecialistService: SetupHumanResourceSpecialistService);
    create(specialsitEntity: SetupHumanResourceSpecialist): Promise<{
        status: string;
        message: string;
    }[] | {
        'data ': {
            'id  ': any;
            status: string;
            messege: string;
            inserted_data: any;
        };
    }[]>;
    findAll(): Promise<SetupHumanResourceSpecialist[]>;
    findOne(id: string): Promise<SetupHumanResourceSpecialist>;
    update(id: string, specialsitEntity: SetupHumanResourceSpecialist): Promise<{
        [key: string]: any;
    }[]>;
    remove(id: string, hospital_id: string): Promise<{
        [key: string]: any;
    }[]>;
    HRSpecialist(search: string): Promise<SetupHumanResourceSpecialist[]>;
    findAllSpec(limit?: number, page?: number): Promise<{
        status_code: string;
        status: string;
        message: string;
        data: import("./dto/setup-human_resource-specialist.dto").SpecialistDto[];
        total: number;
    } | {
        status_code: string;
        status: string;
        message: string;
        data?: undefined;
        total?: undefined;
    }>;
    findSpecialistsearch(search?: string, limit?: number, page?: number): Promise<{
        status_code: string;
        status: string;
        message: string;
        data: import("./dto/setup-human_resource-specialist.dto").SpecialistDto[];
        total: number;
    } | {
        status_code: string;
        status: string;
        message: string;
        data?: undefined;
        total?: undefined;
    }>;
}
