import { FC } from 'react'; import { HeadingProps } from 'theme-ui'; interface SubtitleOwnProps { /** * text to be displayed in the component. */ children?: string; /** * DOM node type to render as. By default h3. */ as?: 'h1' | 'h2' | 'h3' | 'h4' | 'h5'; } export declare type SubtitleProps = SubtitleOwnProps & Omit; /** * `h2` level heading with faded text and font-weight 400. */ export declare const Subtitle: FC; export {};