lost-sia
Version:
Single Image Annotation Tool
14 lines (13 loc) • 315 B
TypeScript
import { StoryObj } from '@storybook/react';
declare const meta: {
title: string;
component: any;
argTypes: {};
parameters: {
layout: string;
};
};
export default meta;
type Story = StoryObj<typeof meta>;
export declare const Default: Story;
export declare const WithImageLabels: Story;