import { FC } from 'react'; import { ISample } from '@glodon-aiot/apis'; interface MarkOCRBoxModalProps { visible: boolean; selectSampleId?: string; datasetId?: string; versionId?: string; ocrMarkTmpl?: string; onClose: VoidFunction; onSave: (record: ISample) => Promise; } declare const MarkOCRBoxModal: FC; export default MarkOCRBoxModal;