import { WebRenderer } from '@storybook/types'; import { Component, AsyncComponent } from 'vue'; type StoryFnVueReturnType = Component | AsyncComponent; interface VueRenderer extends WebRenderer { component: Component | AsyncComponent; storyResult: StoryFnVueReturnType; } export { StoryFnVueReturnType as S, VueRenderer as V };