import { OpHubDoctorSlotShiftServiceService } from './op-hub-doctor-slot-shift-service.service';
import { DoctorSlotShift } from './entities/op-hub-doctor-slot-shift-service.entity';
export declare class SlotTimingResponse {
    shiftId: number;
    slot_timing: string;
    day: string;
    shiftName: string;
    global_shift_id: number;
}
export declare class OpHubDoctorSlotShiftServiceController {
    private readonly doctorSlotShiftService;
    constructor(doctorSlotShiftService: OpHubDoctorSlotShiftServiceService);
    getSlot(entity: DoctorSlotShift): Promise<{
        message: string;
        available_slots?: undefined;
        error?: undefined;
    } | {
        message: string;
        available_slots: any;
        error?: undefined;
    } | {
        message: string;
        error: any;
        available_slots?: undefined;
    }>;
}
