import { ILabel } from '@glodon-aiot/apis'; import { ClassificationLabelmakerValue, ClassificationLabelItem } from '../components/ClassificationImageAnnotation'; export type { ClassificationLabelmakerValue, ClassificationLabelItem }; export interface ClassificationImageAnnotationConfig { getContainer: () => HTMLElement; data: ClassificationLabelmakerValue; onDataChange?: (value: ClassificationLabelmakerValue) => void; readonly?: boolean; onNextClick?: VoidFunction; onPrevClick?: VoidFunction; showLabelList?: boolean | ILabel[]; renderLabelItem?: (label: ClassificationLabelItem) => string; } declare const _default: (config: ClassificationImageAnnotationConfig) => void; export default _default;