import { FC } from 'react'; export interface OCRLabel { uuid: string; box: [number, number][]; words: string; type?: string; catagoryId?: string; } interface LabelEditorItemProps { name: string; catagoryId: string; values: OCRLabel[]; selectedLabel?: OCRLabel; holdingLabel?: OCRLabel; clearHoldingLabel?: VoidFunction; onChange: (values: OCRLabel[]) => void; onRemove: (label: OCRLabel) => void; onSelect?: (value?: Partial) => void; } declare const LabelEditorItem: FC; export default LabelEditorItem;