UNPKG

lost-sia

Version:

Single Image Annotation Tool

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