import type { AnalyticsAdapter } from '../types'; export interface PostHogAdapterOptions { /** * Pass the PostHog client from `posthog-react-native`. * * Install peer dependency: * npm install posthog-react-native * * Usage: * import PostHog from 'posthog-react-native'; * const posthog = await PostHog.initAsync('YOUR_API_KEY'); * createAnalytics({ adapters: [createPostHogAdapter({ client: posthog })] }); */ client: any; } export declare function createPostHogAdapter(options: PostHogAdapterOptions): AnalyticsAdapter; //# sourceMappingURL=posthog.d.ts.map