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