import type { ReactNode } from 'react'; import { type HeadlessConsentBannerAction } from '../../hooks/use-headless-consent-ui'; import { type PolicyActionRenderProps } from '../shared/policy-actions'; export interface ConsentBannerPolicyActionRenderProps extends PolicyActionRenderProps { } export interface ConsentBannerPolicyActionsProps { renderAction?: (action: HeadlessConsentBannerAction, props: ConsentBannerPolicyActionRenderProps) => ReactNode; } export declare function ConsentBannerPolicyActions({ renderAction, }: ConsentBannerPolicyActionsProps): import("react/jsx-runtime").JSX.Element; declare const PolicyActions: typeof ConsentBannerPolicyActions; export { PolicyActions };