/// <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;
