import React from 'react'; import PropTypes from 'prop-types'; interface TitleProps { children?: React.ReactNode; } /** * A title component for use in `Message`. */ declare function Title({ children, ...otherProps }: TitleProps): React.JSX.Element; declare namespace Title { var propTypes: { children: PropTypes.Requireable; }; } export default Title;