import { DataSource } from 'typeorm';
export declare class AddAppointmentDoctorWiseService {
    private readonly connection;
    constructor(connection: DataSource);
    findall(doctor: number, date: string): Promise<any>;
    findalldoctorwise(doctor: number, date: string, limit: number, page: number): Promise<any>;
}
