UNPKG

lost-sia

Version:

Single Image Annotation Tool

12 lines (11 loc) 473 B
import { Label } from '../types'; type LabelInputProps = { defaultLabelId?: number; isVisible: boolean; selectedLabelsIds: number[]; possibleLabels: Label[]; isMultilabel?: boolean; onLabelSelect: (selectedLabelIds: number[]) => void; }; declare const LabelInput: ({ defaultLabelId, isVisible, selectedLabelsIds, possibleLabels, isMultilabel, onLabelSelect, }: LabelInputProps) => import("react/jsx-runtime").JSX.Element; export default LabelInput;