import { DoctorsService } from "./doctors.service";
export declare class DoctorDto {
    doctor_name: string;
    email: string;
    doctor_id: number;
    gender: string;
    image: string;
    qualification: string;
    experience: string;
    rating: string;
    specialist_names: string;
    standard_charge: number;
    hospital_name: string;
    hospital_opening_timing: string;
    charge_id: number;
    tax_percentage: string;
    tax: number;
    Totalamount: number;
}
export declare class DoctorsController {
    private readonly doctorsService;
    constructor(doctorsService: DoctorsService);
    findAll(search: string, hospital_id: number, date: any, gender: string, specialist_id: string): 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> | {
        status: string;
        message: string;
    };
}
