import { DoctorSlotShiftService } from './doctor_slot_shift.service';
import { DoctorSlotShift } from './entities/doctor_slot_shift.entity';
export declare class SlotTimingResponse {
    shiftId: number;
    slot_timing: string;
    day: string;
    shiftName: string;
    global_shift_id: number;
}
export declare class DoctorSlotShiftController {
    private readonly doctorSlotShiftService;
    constructor(doctorSlotShiftService: DoctorSlotShiftService);
    getSlot(entity: DoctorSlotShift): Promise<any>;
}
