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