/**
* 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, HTMLInputElement>;
export namespace Title {
namespace propTypes {
let children: PropTypes.Requireable;
let className: PropTypes.Requireable;
}
}
import React from 'react';
import PropTypes from 'prop-types';