import { SetupApptSlotTimimgsService } from './setup_appt_slot_timimgs.service';
import { SetupApptSlotTimimg } from './entities/setup_appt_slot_timimg.entity';
export declare class SetupApptSlotTimimgsController {
    private readonly setupApptSlotTimimgsService;
    constructor(setupApptSlotTimimgsService: SetupApptSlotTimimgsService);
    findAll(day: string, staff_id: number, shift_id: number): Promise<any>;
    update(id: string, timingEntity: SetupApptSlotTimimg): Promise<{
        [key: string]: any;
    }[]>;
    upsertTimingSlot(timingEntities: SetupApptSlotTimimg[]): Promise<{
        [key: string]: any;
    }[]>;
    remove(id: string, Hospital_id: number): Promise<{
        [key: string]: any;
    }[]>;
}
