1 | import { ReactElement } from 'react';
|
2 | export type { RenderContext } from '@storybook/store';
|
3 | export type { StoryContext } from '@storybook/csf';
|
4 | export interface ShowErrorArgs {
|
5 | title: string;
|
6 | description: string;
|
7 | }
|
8 | export declare type StoryFnReactReturnType = ReactElement<unknown>;
|
9 | export interface IStorybookStory {
|
10 | name: string;
|
11 | render: (context: any) => any;
|
12 | }
|
13 | export interface IStorybookSection {
|
14 | kind: string;
|
15 | stories: IStorybookStory[];
|
16 | }
|