import { DataSource } from 'typeorm';
export declare class InternalAppointmentShiftService {
    private readonly connection;
    constructor(connection: DataSource);
    findAll(staff_id: number): Promise<any>;
    findshift(staff_id: number): Promise<any>;
}
