mentiq-sdk
Version:
A powerful analytics SDK for React and Next.js with heatmap tracking, session monitoring, and performance analytics
10 lines • 455 B
TypeScript
import React, { ReactNode } from "react";
import { AnalyticsConfig, AnalyticsInstance } from "./types";
export declare const AnalyticsContext: React.Context<AnalyticsInstance | null>;
interface AnalyticsProviderProps {
config: AnalyticsConfig;
children: ReactNode;
}
export declare function AnalyticsProvider({ config, children, }: AnalyticsProviderProps): import("react/jsx-runtime").JSX.Element;
export {};
//# sourceMappingURL=provider.d.ts.map