import { CSSProperties, FC } from 'react'; import * as config from './config'; export interface BlocksCommonProps { className?: string; style?: CSSProperties; height?: string | number; collapsable?: boolean; defaultCollapsed?: boolean; placeholder?: string; showLink?: boolean; } export declare const DocBlockBase: FC; export declare const Figma: FC & BlocksCommonProps>; export declare const Figspec: FC & BlocksCommonProps>; export declare const IFrame: FC & BlocksCommonProps>; export declare const Image: FC & BlocksCommonProps>; export interface DesignProps { storyId: string; } export declare const Design: FC>;