import { FC } from 'react'; import { SourceProps } from '@component-controls/components'; import { StoryInputProps } from '@component-controls/store'; import { StoryBlockContainerProps } from '../BlockContainer/story'; export declare type StoryConfigProps = StoryBlockContainerProps & { sourceProps?: SourceProps; } & StoryInputProps; /** * Displays the configuration object of a story. */ export declare const StoryConfig: FC;