UNPKG

@cliqdigital/bloomreach-sdk

Version:

React component library for integrating Bloomreach SDK with push notifications support

12 lines (11 loc) 379 B
import React from 'react'; interface ConsentBannerProps { title?: string; description?: string; acceptLabel?: string; rejectLabel?: string; onAccept?: () => void; onReject?: () => void; } export declare function ConsentBanner({ title, description, acceptLabel, rejectLabel, onAccept, onReject, }: ConsentBannerProps): React.JSX.Element | null; export {};