@hhgtech/hhg-components
Version:
Hello Health Group common components
11 lines (10 loc) • 323 B
TypeScript
/// <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>;