import { type HTMLAttributes, type ReactNode } from 'react'; interface IABConsentDialogFooterProps extends HTMLAttributes { children?: ReactNode; } /** * Footer component for the IAB Consent Dialog. * * @remarks * Contains action buttons (Reject All, Accept All, Save). * * @public */ declare const IABConsentDialogFooter: import("react").ForwardRefExoticComponent>; export { IABConsentDialogFooter };