import type { AllConsentNames } from 'c15t'; import * as Button from '../ui/button'; import type { ConsentButtonProps } from './button.types'; type ConsentActionThemeKey = 'accept' | 'reject' | 'customize'; /** * Button component that allows users to reject non-essential cookies. * * @remarks * When clicked, this button saves only necessary cookie consents and closes the banner. * * @example * ```tsx * * Reject All Cookies * * ``` * * @public */ export declare const ConsentButton: import("react").ForwardRefExoticComponent>; export {};