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