import { Category, ILabel, TInfer } from '@glodon-aiot/apis'; import { DetectionLabelmakerValue, LabelItem } from '../components/DetectionImageAnnotation'; export interface DetectionImageAnnotationData { ileUrl: string; labels: TInfer[]; } export interface DetectionImageAnnotationConfig { getContainer: () => HTMLElement; data: DetectionLabelmakerValue; onDataChange?: (value: DetectionLabelmakerValue) => void; readonly?: boolean; onNextClick?: VoidFunction; onPrevClick?: VoidFunction; showLabelList?: boolean | ILabel[]; categories?: Category[]; renderLabelItem?: (label: LabelItem) => string; } declare const _default: (config: DetectionImageAnnotationConfig) => void; export default _default;