import { type HTMLAttributes, type ReactNode } from 'react'; interface IABConsentBannerButtonGroupProps extends HTMLAttributes { children: ReactNode; } /** * Button group component for the IAB Consent Banner footer. * * @remarks * Groups related buttons together (e.g., Reject and Accept). * * @public */ declare const IABConsentBannerButtonGroup: import("react").ForwardRefExoticComponent>; /** * Spacer component for the IAB Consent Banner footer. * * @public */ declare const IABConsentBannerFooterSpacer: import("react").ForwardRefExoticComponent & import("react").RefAttributes>; export { IABConsentBannerButtonGroup, IABConsentBannerFooterSpacer };