export declare class DoctorDto {
    doctor_name: string;
    doctor_id: number;
    image: string;
    hospital_id: number;
    hospital_name: string;
    address: string;
    experience: string;
    qualification: string;
    doctor_designation: string;
    languages_known: string;
    rating: string;
    specialist_names: string;
    timings_shift_id: string;
    amount: number;
}
export declare class CountDto {
    details: DoctorDto[];
    total: number;
}
export declare class PastAppointmentDto {
    id: number;
    module: string;
    appointment_id: string;
    doctor_id: number;
    doctor_name: string;
    doctor_gender: string;
    image: string;
    case_sheet_document: string;
    hospital_id: number;
    hospital_name: string;
    address: string;
    date: string;
    time: string;
    appointment_status: string;
    appointment_status_id: number;
    color_code: string;
    patient_id: number;
    specialist_names: string;
}
export declare class PastCountDto {
    details: PastAppointmentDto[];
    total: number;
}
export declare class UpcomingAppointmentDto {
    id: number;
    module: string;
    appointment_id: string;
    doctor_id?: number;
    image?: string;
    doctor_name?: string;
    doctor_gender?: string;
    hospital_id: number;
    hospital_name: string;
    address: string;
    date: string;
    time: string;
    appointment_status: string;
    appointment_status_id: number;
    color_code: string;
    patient_id: number;
    live_consult: string;
    global_shift_id?: number;
    shift_id?: number;
    specialist_names?: string;
}
export declare class UpcomingCountDto {
    details: UpcomingAppointmentDto[];
    total: number;
}
