import { Category, ILabel, TInfer } from '@glodon-aiot/apis'; import { LabelItem } from '../DetectionImageAnnotation'; export interface OcrLabelmakerValue { fileUrl: string; labels: TInfer[]; } export interface OcrLabelmakerProps { value: OcrLabelmakerValue; onChange?: (value: OcrLabelmakerValue) => void; readonly?: boolean; onNextClick?: VoidFunction; onPrevClick?: VoidFunction; showLabelList?: boolean | ILabel[]; categories?: Category[]; renderLabelItem?: (label: LabelItem) => string; } declare const OcrLabelmaker: (props: OcrLabelmakerProps) => import("react/jsx-runtime").JSX.Element; export default OcrLabelmaker;