import { DataSource } from "typeorm";
import { SetupAppointmentShift } from "./entities/setup-appointment-shift.entity";
import { CountDto } from "./setup-appointment-shift.dto";
export declare class SetupAppointmentShiftService {
    private readonly connection;
    private readonly dynamicConnection;
    constructor(connection: DataSource, dynamicConnection: DataSource);
    create(appointment_shiftEntity: SetupAppointmentShift): Promise<{
        [key: string]: any;
    }[]>;
    findAll(): Promise<SetupAppointmentShift[]>;
    findOne(id: string): Promise<SetupAppointmentShift | null>;
    update(id: string, appointment_shiftEntity: SetupAppointmentShift): Promise<{
        [key: string]: any;
    }[]>;
    remove(id: string, Hospital_id: number): Promise<{
        [key: string]: any;
    }[]>;
    AppointmentShift(search: string): Promise<SetupAppointmentShift[]>;
    findallshift(limit: number, page: number, search?: string): Promise<CountDto>;
}
