/// <reference types="react" />
import { LOCALE } from "../interfaces/types";
export type LeadGenContextType = {
    apiUrl?: string;
    siteDomain?: string;
    siteId?: string;
    locale?: LOCALE;
    primaryColor?: string;
};
export declare const LeadGenContext: import("react").Context<LeadGenContextType>;
