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