export default Subheader; declare class Subheader extends React.PureComponent { static displayName: string; static defaultProps: { skin: string; }; static propTypes: { /** Applies a data-hook HTML attribute to be used in the tests */ dataHook: PropTypes.Requireable; /** Sets a title text value. Title can also be overridden to any other component. */ title: PropTypes.Validator>; /** Adds an empty container on the right side of a subheader. Commonly used to store action buttons or an info icon. */ suffix: PropTypes.Requireable; /** Controls the background color of a subheader */ skin: PropTypes.Requireable; }; constructor(...args: any[]); render(): React.JSX.Element; } import React from 'react'; import PropTypes from 'prop-types'; //# sourceMappingURL=Subheader.d.ts.map