/** @jsx jsx */ import { FC } from 'react'; import { Story } from '@component-controls/core'; import { BlockContainerProps } from '@component-controls/components'; export declare type StoryBlockContainerProps = BlockContainerProps; export declare type StoryBlockContainerAllProps = { story?: Story; useStoryDescription?: boolean; } & StoryBlockContainerProps; export declare const StoryBlockContainer: FC;