import { SetupAppointmentDoctorShiftService } from './setup-appointment-doctor_shift.service';
import { SetupAppointmentDoctorShift } from './entities/setup-appointment-doctor_shift.entity';
export declare class SetupAppointmentDoctorShiftController {
    private readonly setupAppointmentDoctorShiftService;
    constructor(setupAppointmentDoctorShiftService: SetupAppointmentDoctorShiftService);
    create(doctor_shiftEntity: SetupAppointmentDoctorShift): Promise<{
        [key: string]: any;
    }[]>;
    findAll(): Promise<SetupAppointmentDoctorShift[]>;
    AppointmentDoctorShift(search: string): Promise<SetupAppointmentDoctorShift[]>;
    findAllDesig(limit: number, page: number, search?: string): Promise<import("./setup-appointment-doctor_shift.dto").CountDto | {
        status_code: string;
        status: string;
        message: string;
        data: import("./setup-appointment-doctor_shift.dto").appointment_doctor_shift1[];
        total: number;
    } | {
        status_code: string;
        status: string;
        message: string;
        data?: undefined;
        total?: undefined;
    }>;
}
