import type { TrackingCallback } from "../types/growthbook"; import type { GrowthBook } from "../GrowthBook"; import type { GrowthBookClient, UserScopedGrowthBook } from "../GrowthBookClient"; export type Trackers = "gtag" | "gtm" | "segment"; export declare function thirdPartyTrackingPlugin({ additionalCallback, trackers, }?: { additionalCallback?: TrackingCallback; trackers?: Trackers[]; }): (gb: GrowthBook | UserScopedGrowthBook | GrowthBookClient) => void; //# sourceMappingURL=third-party-tracking.d.ts.map