import { default as React } from 'react'; import { TInfer } from '@glodon-aiot/apis'; interface ScanTableProps { currentInfer?: TInfer[]; onCellSelect?: (currentCell?: TInfer) => void; currentCell?: TInfer; } declare const ScanTable: React.FC; export default ScanTable;