import React from 'react';
export type DoctorInfoExpertiseProps = {
    name: string;
    specialty?: string;
    experience?: string;
    profileImage: string;
};
declare const DoctorInfoExpertise: (props: DoctorInfoExpertiseProps) => React.JSX.Element;
export { DoctorInfoExpertise };
