import { ILabel, TInfer } from '@glodon-aiot/apis'; export interface LabelExtra { [key: string]: any; } export type LabelItem = TInfer & LabelExtra; export interface DetectionLabelmakerValue { fileUrl: string; labels: LabelItem[]; } export interface DetectionLabelmakerProps { value: DetectionLabelmakerValue; onChange?: (value: DetectionLabelmakerValue) => void; readonly?: boolean; onNextClick?: VoidFunction; onPrevClick?: VoidFunction; showLabelList?: boolean | ILabel[]; renderLabelItem?: (label: LabelItem) => string; } declare const DetectionLabelmaker: (props: DetectionLabelmakerProps) => import("react/jsx-runtime").JSX.Element; export default DetectionLabelmaker;