/** * Parameters of the useTracking hook. */ export interface TrackingParams { /** * The inspection ID. */ inspectionId: string; /** * The authentication token used to communicate with the API. */ authToken: string; } /** * Custom hook used for adding tags and userId to analytics and monitoring provider. */ export declare function useTracking({ inspectionId, authToken }: TrackingParams): void;