import { DataSource } from "typeorm";
export declare class DoctorsService {
    private readonly connection;
    constructor(connection: DataSource);
    findAll(search: string, hospital_id: number, date: any, gender: string, specialist_id: any): Promise<any>;
    V2findAll(search: string, hospital_id: number, date: any, gender: string, limit: number, page: number, staff_id: number): Promise<any>;
    findalldoctors(hospital_id: number, limit: number, page: number): Promise<any>;
    catch(error: any): void;
}
