export declare class DoctorProfile {
    id: number;
    patient_id: number;
    staff_id: number;
    rating: number;
    review: string;
    is_recommended: number;
    start_on_time: number;
    created_at: string;
}
