/** * The `` component is generally used for intro text at the top * of the page using the type token `fluid-heading-03`. */ export function PageDescription({ children, className, ...rest }: { [x: string]: any; children: any; className: any; }): React.FunctionComponentElement>>; export namespace PageDescription { namespace propTypes { let children: PropTypes.Requireable; let className: PropTypes.Requireable; } } import React from 'react'; import PropTypes from 'prop-types';