import { FC } from 'react'; import { OCRLabel } from './LabelEditorItem'; interface LabelEditorInputProps { value?: Partial; selected?: boolean; holdingLabel?: OCRLabel; clearHoldingLabel?: VoidFunction; onChange?: (value: OCRLabel) => void; onSelect?: (value?: Partial) => void; } declare const LabelEditorInput: FC; export default LabelEditorInput;