import { ComponentType, ReactElement } from 'react'; import { WebRenderer } from '@storybook/types'; interface ReactRenderer extends WebRenderer { component: ComponentType; storyResult: StoryFnReactReturnType; } type StoryFnReactReturnType = ReactElement; export { ReactRenderer as R, StoryFnReactReturnType as S };