/** * Re-enables the Contentsquare UX tracking SDK. */ export declare const resumeTracking: () => void; /** * Pauses the Contentsquare UX tracking SDK. * Once this is called the SDK will pause. */ export declare const pauseTracking: () => void; /** * Stops the Contentsquare UX tracking SDK. * Once this is called the SDK will completely stop. */ export declare const stop: () => void; /** * Sends a (key, value) pair, called DynamicVar, to Contentsquare tracking services. * * @param {string} key * @param {string | number} value * @param {(error: Error) => void} onError */ export declare const addDynamicVar: (key: string, value: string | number, onError?: (error: Error) => void) => void;