import { StoriesProps, StoriesRef } from './Stories.types'; import { StoriesPreview } from './components/StoriesPreview'; import { ForwardRefExoticComponent, RefAttributes } from 'react'; type StoriesComponent = ForwardRefExoticComponent> & { Preview: typeof StoriesPreview; }; export declare const Stories: StoriesComponent; export {};