import { SetupAppointmentShiftService } from './setup-appointment-shift.service';
import { SetupAppointmentShift } from './entities/setup-appointment-shift.entity';
export declare class SetupAppointmentShiftController {
    private readonly setupAppointmentShiftService;
    constructor(setupAppointmentShiftService: SetupAppointmentShiftService);
    create(appointment_shiftEntity: SetupAppointmentShift): Promise<{
        [key: string]: any;
    }[]>;
    findAll(): Promise<SetupAppointmentShift[]>;
    findOne(id: string): Promise<SetupAppointmentShift>;
    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[]>;
    findAllDesig(limit: number, page: number, search?: string): Promise<import("./setup-appointment-shift.dto").CountDto | {
        status_code: string;
        status: string;
        message: string;
        data: import("./setup-appointment-shift.dto").appointment_shift1[];
        total: number;
    } | {
        status_code: string;
        status: string;
        message: string;
        data?: undefined;
        total?: undefined;
    }>;
}
