export declare class DoctorDetailsDto {
    doctor_name: string;
    email: string;
    doctor_id: number;
    gender: string;
    image: string;
    qualification: string;
    experience: string;
    rating: string;
    specialist_names: string;
    standard_charge: number | null;
    hospital_name: string;
    hospital_opening_timing: string;
    charge_id: number | null;
    tax_percentage: string | null;
    tax: number | null;
    Totalamount: number | null;
}
export declare class DoctorDetailsCountDto {
    details: DoctorDetailsDto[];
    count: any;
}
