import { DataSource } from 'typeorm';
import { SetupHumanResourceSpecialist } from './entities/setup-human_resource-specialist.entity';
import { CountDto } from './dto/setup-human_resource-specialist.dto';
export declare class SetupHumanResourceSpecialistService {
    private readonly connection;
    private readonly dynamicConnection;
    constructor(connection: DataSource, dynamicConnection: DataSource);
    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 | null>;
    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<CountDto>;
    findSpecialistsearch(search: string, limit: number, page: number): Promise<CountDto>;
}
