import { default as React } from 'react'; import { Category, ILabel, ISample } from '@glodon-aiot/apis'; import { LabelItem } from '../../../DetectionImageAnnotation'; interface ImageDetailProps { currentSample?: ISample; onNextClick?: VoidFunction; onPrevClick?: VoidFunction; labels?: ILabel[]; onRefresh?: VoidFunction; onChange?: (sample: ISample) => void; readonly?: boolean; categories: Category[]; renderLabelItem?: (label: LabelItem) => string; } declare const ImageDetail: React.FC; export default ImageDetail;