import { type ReactNode } from 'react'; interface IABConsentDialogHeaderProps { children?: ReactNode; /** * Custom title. If not provided, uses translation. */ headerTitle?: ReactNode; /** * Custom description. If not provided, uses translation. */ description?: ReactNode; /** * Whether to show the close button. * @default true */ showCloseButton?: boolean; /** * Additional class name. */ className?: string; } /** * Header component for the IAB Consent Dialog. * * @remarks * Contains title, description, and close button. * * @public */ declare const IABConsentDialogHeader: import("react").ForwardRefExoticComponent>; export { IABConsentDialogHeader };