1 | import type { JSXElementConstructor } from 'react';
|
2 | import type { Args } from '@storybook/csf';
|
3 | import type { StoryObj } from './types-6-0';
|
4 | import type { ComponentStoryObj } from './types-6-3';
|
5 | export type { StoryFn, StoryObj, Meta } from './types-6-0';
|
6 | export type { ComponentStoryFn, ComponentStoryObj, ComponentMeta } from './types-6-3';
|
7 |
|
8 |
|
9 |
|
10 |
|
11 |
|
12 | export declare type Story<TArgs = Args> = StoryObj<TArgs>;
|
13 |
|
14 |
|
15 |
|
16 |
|
17 |
|
18 |
|
19 |
|
20 |
|
21 | export declare type ComponentStory<T extends keyof JSX.IntrinsicElements | JSXElementConstructor<any>> = ComponentStoryObj<T>;
|