lost-sia
Version:
Single Image Annotation Tool
20 lines (19 loc) • 652 B
TypeScript
import { StoryObj } from '@storybook/react';
declare const meta: {
title: string;
component: ({ defaultLabelId, isVisible, selectedLabelsIds, possibleLabels, isMultilabel, onLabelSelect, }: {
defaultLabelId?: number;
isVisible: boolean;
selectedLabelsIds: number[];
possibleLabels: import('..').Label[];
isMultilabel?: boolean;
onLabelSelect: (selectedLabelIds: number[]) => void;
}) => import("react/jsx-runtime").JSX.Element;
argTypes: {};
parameters: {
layout: string;
};
};
export default meta;
type Story = StoryObj<typeof meta>;
export declare const Default: Story;