/** * Sends a user identity to CSQ tracking services. This identity is immediately hashed so no PII can ever be accessed. * * @param {string} identity Sends a user identity to CSQ tracking services. This identity is immediately hashed so no PII can ever be accessed. */ export declare const identify: (identity: string) => void; /** * Opt user IN Contentsquare tracking program. * This allows Contentsquare SDK gather user behaviors while navigating through the app. */ export declare const optIn: () => void; /** * Opt user OUT of the Contentsquare tracking program. * This will stop Contentsquare SDK from gathering any further user behavior while navigating * around the app. */ export declare const optOut: () => void; export declare const resetIdentity: () => void; /** * Sends a User Identifier to Contentsquare tracking services. This identifier is immediately * hashed so no PII can ever be accessed. * * @param {string} userIdentifier The user identifier should be max 100 characters long. */ export declare const sendUserIdentifier: (userIdentifier: string) => void;