export default SectionHeader;
/**
* A header for a `Section[…]` component
*
* - heading text
* - actions (e.g. links, buttons, form)
* - automatic styles or markup for given context (ex: within a form or a table)
*
* @example
* // a section header with heading text
*
* Hyperlinked Name of Section
*
* @example
* // a form header with actions and heading text
* Reset}
* isForForm
* >
* Name of Form
*
* @example
* // a table header with actions and heading text
* }
* isForTable
* >
* Name of Table
*
*/
declare function SectionHeader({ actions, children, className, isForForm, isForTable, }: {
actions?: string | undefined;
children: any;
className?: string | undefined;
isForForm?: boolean | undefined;
isForTable?: boolean | undefined;
}): import("react/jsx-runtime").JSX.Element;
declare namespace SectionHeader {
namespace propTypes {
const actions: PropTypes.Requireable;
const children: PropTypes.Requireable;
const className: PropTypes.Requireable;
const isForForm: PropTypes.Requireable;
const isForTable: PropTypes.Requireable;
}
}
import PropTypes from "prop-types";