import { type HTMLAttributes, type ReactNode } from 'react'; interface IABConsentBannerCardProps extends HTMLAttributes { children: ReactNode; } /** * Card component for the IAB Consent Banner. * * @remarks * Main container for the banner content. Handles focus trap when trapFocus is enabled. * * @public */ declare const IABConsentBannerCard: import("react").ForwardRefExoticComponent>; export { IABConsentBannerCard };