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