import { WebRenderer, Canvas, StoryContext as StoryContext$1, Args, ComponentAnnotations, AnnotatedStoryFn, ArgsStoryFn, ArgsFromMeta, StoryAnnotations, StrictArgs, DecoratorFunction, LoaderFunction, ProjectAnnotations, NamedOrDefaultProjectAnnotations, NormalizedProjectAnnotations, StoryAnnotationsOrFn, ComposedStoryFn, Store_CSFExports, StoriesWithPartialProps } from 'storybook/internal/types'; export { ArgTypes, Args, Parameters, StrictArgs } from 'storybook/internal/types'; import { ConcreteComponent, App, VNodeChild, FunctionalComponent } from 'vue'; import { Constructor, RemoveIndexSignature, Simplify, SetOptional } from 'type-fest'; import { ComponentProps, ComponentSlots } from 'vue-component-type-helpers'; type StoryFnVueReturnType = ConcreteComponent; interface VueRenderer extends WebRenderer { component: Omit, 'props'>; storyResult: StoryFnVueReturnType; mount: (Component?: StoryFnVueReturnType, options?: { props?: Record; slots?: Record; }) => Promise; } declare const setup: (fn: (app: App, storyContext?: StoryContext$1) => unknown) => void; /** * Metadata to configure the stories for a component. * * @see [Default export](https://storybook.js.org/docs/api/csf#default-export) */ type Meta = ComponentAnnotations>; /** * Story function that represents a CSFv2 component example. * * @see [Named Story exports](https://storybook.js.org/docs/api/csf#named-story-exports) */ type StoryFn = AnnotatedStoryFn>; /** * Story object that represents a CSFv3 component example. * * @see [Named Story exports](https://storybook.js.org/docs/api/csf#named-story-exports) */ type StoryObj = TMetaOrCmpOrArgs extends { render?: ArgsStoryFn; component?: infer Component; args?: infer DefaultArgs; } ? Simplify & ArgsFromMeta> extends infer TArgs ? StoryAnnotations>> : never : StoryAnnotations>; type ExtractSlots = AllowNonFunctionSlots>>>; type AllowNonFunctionSlots = { [K in keyof Slots]: Slots[K] | VNodeChild; }; type ComponentPropsAndSlots = ComponentProps & ExtractSlots; type ComponentPropsOrProps = TCmpOrArgs extends Constructor ? ComponentPropsAndSlots : TCmpOrArgs extends FunctionalComponent ? ComponentPropsAndSlots : TCmpOrArgs; type Decorator = DecoratorFunction; type Loader = LoaderFunction; type StoryContext = StoryContext$1; type Preview = ProjectAnnotations; type JSXAble = TElement & { new (...args: any[]): any; $props: any; }; type MapToJSXAble = { [K in keyof T]: JSXAble; }; /** * Function that sets the globalConfig of your Storybook. The global config is the preview module of * your .storybook folder. * * It should be run a single time, so that your global config (e.g. decorators) is applied to your * stories when using `composeStories` or `composeStory`. * * Example: * * ```jsx * // setup-file.js * import { setProjectAnnotations } from '@storybook/vue3'; * import projectAnnotations from './.storybook/preview'; * * setProjectAnnotations(projectAnnotations); * ``` * * @param projectAnnotations - E.g. (import projectAnnotations from '../.storybook/preview') */ declare function setProjectAnnotations(projectAnnotations: NamedOrDefaultProjectAnnotations | NamedOrDefaultProjectAnnotations[]): NormalizedProjectAnnotations; declare const vueProjectAnnotations: ProjectAnnotations; /** * Function that will receive a story along with meta (e.g. a default export from a .stories file) * and optionally projectAnnotations e.g. (import * from '../.storybook/preview) and will return a * composed component that has all args/parameters/decorators/etc combined and applied to it. * * It's very useful for reusing a story in scenarios outside of Storybook like unit testing. * * Example: * * ```jsx * import { render } from '@testing-library/vue'; * import { composeStory } from '@storybook/vue3'; * import Meta, { Primary as PrimaryStory } from './Button.stories'; * * const Primary = composeStory(PrimaryStory, Meta); * * test('renders primary button with Hello World', () => { * const { getByText } = render(Primary, { props: { label: 'Hello world' } }); * expect(getByText(/Hello world/i)).not.toBeNull(); * }); * ``` * * @param story * @param componentAnnotations - E.g. (import Meta from './Button.stories') * @param [projectAnnotations] - E.g. (import * as projectAnnotations from '../.storybook/preview') * this can be applied automatically if you use `setProjectAnnotations` in your setup files. * @param [exportsName] - In case your story does not contain a name and you want it to have a name. */ declare function composeStory(story: StoryAnnotationsOrFn, componentAnnotations: Meta, projectAnnotations?: ProjectAnnotations, exportsName?: string): JSXAble>>; /** * Function that will receive a stories import (e.g. `import * as stories from './Button.stories'`) * and optionally projectAnnotations (e.g. `import * from '../.storybook/preview`) and will return * an object containing all the stories passed, but now as a composed component that has all * args/parameters/decorators/etc combined and applied to it. * * It's very useful for reusing stories in scenarios outside of Storybook like unit testing. * * Example: * * ```jsx * import { render } from '@testing-library/vue'; * import { composeStories } from '@storybook/vue3'; * import * as stories from './Button.stories'; * * const { Primary, Secondary } = composeStories(stories); * * test('renders primary button with Hello World', () => { * const { getByText } = render(Primary, { props: { label: 'Hello world' } }); * expect(getByText(/Hello world/i)).not.toBeNull(); * }); * ``` * * @param csfExports - E.g. (import * as stories from './Button.stories') * @param [projectAnnotations] - E.g. (import * as projectAnnotations from '../.storybook/preview') * this can be applied automatically if you use `setProjectAnnotations` in your setup files. */ declare function composeStories>(csfExports: TModule, projectAnnotations?: ProjectAnnotations): MapToJSXAble, keyof Store_CSFExports>>; export { type ComponentPropsAndSlots, type Decorator, type Loader, type Meta, type Preview, type StoryContext, type StoryFn, type StoryObj, type VueRenderer, composeStories, composeStory, setProjectAnnotations, setup, vueProjectAnnotations };