/** @jsx jsx */ import { FC } from 'react'; import { BoxProps } from 'theme-ui'; export interface BlockContainerOwnProps { /** * optional section title for the block. */ title?: string; /** * optional markdown description. */ description?: string; /** * optional id to be used for the block * if no id is provided, one will be calculated automatically * from the title. */ id?: string; /** * if false, will nothave a collapsible frame. */ collapsible?: boolean; /** * testing id */ 'data-testid'?: string; /** * inner container variant or plain */ plain?: boolean; } export declare type BlockContainerProps = BlockContainerOwnProps & BoxProps; /** * Collapsible block container with a title. The title creates also an attribute id and an octicon for github style navigation. * */ export declare const BlockContainer: FC;