import React from 'react';
export type Props = {
    image: JSX.Element;
    name: string;
    description: string;
    isDescriptionHidden?: boolean;
};
declare const DoctorInfo: ({ name, description, image, isDescriptionHidden, }: Props) => React.JSX.Element;
export { DoctorInfo };
