export default Header; declare class Header extends React.PureComponent { static displayName: string; static propTypes: { /** Applies a data-hook HTML attribute to be used in the tests */ dataHook: PropTypes.Requireable; /** Sets card title text value. Title can also be overridden to any other component. */ title: PropTypes.Validator>; /** Sets card subtitle text value. Subtitle can also be overridden to any other component. */ subtitle: PropTypes.Requireable; /** Adds an empty container on the right side of a header. Used to store action buttons or other components. */ suffix: PropTypes.Requireable; /** Specifies a CSS class name to be appended to the component’s root element. */ className: PropTypes.Requireable; }; constructor(props: any); constructor(props: any, context: any); render(): React.JSX.Element; } import React from 'react'; import PropTypes from 'prop-types'; //# sourceMappingURL=Header.d.ts.map