import { type HTMLAttributes, type ReactNode } from 'react';
interface IABConsentBannerHeaderProps extends HTMLAttributes {
children: ReactNode;
}
/**
* Header component for the IAB Consent Banner.
*
* @remarks
* Container for title, description, purpose list, and legitimate interest notice.
*
* @public
*/
declare const IABConsentBannerHeader: import("react").ForwardRefExoticComponent>;
export { IABConsentBannerHeader };