import React from 'react'; export interface Props { /** * 患者姓名 */ patientName?: string; /** * 就诊号 */ patCardNo?: string; className?: string; /** * 医院名称 */ hisName?: string; onTap?: (e: any) => void; } declare const _default: ({ hisName, patientName, patCardNo, onTap, className, }: Props) => React.JSX.Element; export default _default;