/** @jsx jsx */ import { FC } from 'react'; import { BoxProps } from 'theme-ui'; import { StoryInputProps } from '@component-controls/store'; export declare type TitleProps = { contributors?: boolean; } & StoryInputProps & BoxProps; /** * displays a title as assigned to the story document */ export declare const Title: FC;