import type { ConsentButtonProps } from '../../shared/primitives/button.types'; /** * Button to accept all available cookies. * * @remarks * - Enables all consent options * - Closes dialog after action * - Triggers necessary callbacks */ declare const ConsentWidgetAcceptAllButton: import("react").ForwardRefExoticComponent>; declare const ConsentWidgetCustomizeButton: import("react").ForwardRefExoticComponent>; declare const ConsentWidgetSaveButton: import("react").ForwardRefExoticComponent>; /** * Button to reject all non-essential cookies. * * @remarks * - Sets all optional consents to false * - Maintains required consents * - Closes dialog after action */ declare const ConsentWidgetRejectButton: import("react").ForwardRefExoticComponent>; declare const AcceptAllButton: import("react").ForwardRefExoticComponent>; declare const CustomizeButton: import("react").ForwardRefExoticComponent>; declare const SaveButton: import("react").ForwardRefExoticComponent>; declare const RejectButton: import("react").ForwardRefExoticComponent>; export { AcceptAllButton, ConsentWidgetAcceptAllButton, ConsentWidgetCustomizeButton, ConsentWidgetRejectButton, ConsentWidgetSaveButton, CustomizeButton, RejectButton, SaveButton, };