/** * Set the User token being included in requests to the OneBlink API on behalf * of the user. * * #### Example * * ```js * authService.setUserToken('a value') * ``` */ export declare function setUserToken(token: string | undefined | null): void; /** * Can be used to retrieve the `userToken` passed to `setUserToken()`. Will be * `undefined` if the token has not been set yet. * * #### Example * * ```js * const userToken = authService.getUserToken() * if (userToken) { * // Use token here... * } * ``` * * @returns */ export declare function getUserToken(): string | null | undefined;