/** @jsx jsx */ import { FC, Ref } from 'react'; import { CSSProperties, BoxProps } from 'theme-ui'; import { Story } from '@component-controls/core'; export interface IframeWrapperProps { initialIframeContent?: string; style?: CSSProperties; title?: string; } export declare type StoryWrapperType = 'wrapper' | 'iframe'; export interface StoryWrapperProps { wrapper?: StoryWrapperType; iframeStyle?: CSSProperties; title?: string; } export declare const NAME = "story"; export declare type StoryRenderProps = { story: Story; ref?: Ref; } & BoxProps; export declare const StoryRender: FC;