import { ComponentProps, JSXElementConstructor } from 'react'; import type { StoryFn, StoryObj, Story, Meta } from './types-6-0'; export * from './types-6-0'; /** * For the common case where a component's stories are simple components that receives args as props: * * ```tsx * export default { ... } as ComponentMeta; * ``` */ export declare type ComponentMeta> = Meta>; /** * For the common case where a (CSFv2) story is a simple component that receives args as props: * * ```tsx * const Template: ComponentStory = (args) =>