export interface InlineExposureTrackingParams { exposureUrl?: string; recommendationId?: string; linkElement?: HTMLElement | null; sessionId?: string; logPrefix?: string; } export interface InlineExposureTracker { startTracking: (params: InlineExposureTrackingParams) => void; cleanup: () => void; } /** * Creates an inline exposure tracker that fires AdMesh exposure pixels when * detected links meet the MRC viewability threshold (50% visible for 1 second). */ export declare const createInlineExposureTracker: () => InlineExposureTracker; //# sourceMappingURL=inlineExposureTracker.d.ts.map