@cliqdigital/bloomreach-sdk
Version:
React component library for integrating Bloomreach SDK with push notifications support
12 lines (11 loc) • 444 B
TypeScript
/// <reference types="react" />
import type { BloomreachConfig } from "../types";
export interface BloomreachContextType {
isInitialized: boolean;
hasConsent: boolean;
browserSupported: boolean;
setHasConsent: (value: boolean) => void;
config: BloomreachConfig;
}
export declare const BloomreachContext: import("react").Context<BloomreachContextType>;
export declare const useBloomreachContext: () => BloomreachContextType;