import type { PropsFor } from "../../types.js"; export type SectionHeaderProps = PropsFor<"div", { /** Adds an arrow with hover effect when wrapped in a link */ arrow?: boolean; /** Remove the default Section.Header padding */ noPadding?: boolean; }>; declare const SectionHeader: import("react").ForwardRefExoticComponent>; export default SectionHeader;