import { DoctorSlotShift } from './entities/doctor_slot_shift.entity';
import { DataSource } from 'typeorm';
export declare class DoctorSlotShiftService {
    private readonly connection;
    constructor(connection: DataSource);
    getSlot(Entity: DoctorSlotShift, patientId?: number): Promise<any>;
}
