/** * The `` component is used to provide a title to a subsequent component * (table, image, video, code block). The Title should be used in favor of other * techniques for bolded text (h4s) to preserve page structure and heading hierarchy. */ export function Title({ children, className }: { children: any; className: any; }): React.DetailedReactHTMLElement<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>; export namespace Title { namespace propTypes { let children: PropTypes.Requireable<PropTypes.ReactNodeLike>; let className: PropTypes.Requireable<string>; } } import React from 'react'; import PropTypes from 'prop-types';