UNPKG

@optic7409/resolvo-analytics

Version:

Simplified analytics client library for Next.js with automatic SSR handling, one-line integration, and comprehensive tracking

12 lines (11 loc) 436 B
import React from 'react'; import { AnalyticsConfig } from '../../types'; interface AnalyticsTrackerProps { config: AnalyticsConfig; children: React.ReactNode; trackClicks?: boolean; trackForms?: boolean; customSelectors?: string[]; } export declare function AnalyticsTracker({ config, children, trackClicks, trackForms, customSelectors }: AnalyticsTrackerProps): import("react/jsx-runtime").JSX.Element; export {};