import React, { SVGProps } from 'react';
export type DoctorExpertiseItemProps = {
    doctorInfo: string | string[];
    Icon: React.ComponentType<SVGProps<SVGSVGElement>>;
    title: string;
};
declare const DoctorExpertiseItem: (props: DoctorExpertiseItemProps) => React.JSX.Element;
export { DoctorExpertiseItem };
