import { FC } from 'react'; import { StoryInputProps } from '@component-controls/store'; import { StoryPlaygroundProps } from '../Playground'; export interface StoriesOwnProps { /** * whether to display the dark theme storysource code component */ dark?: boolean; } export declare type StoriesProps = StoriesOwnProps & StoryInputProps & StoryPlaygroundProps; /** * displays multiple stories in ther own Playground components * */ export declare const Stories: FC;