import { getVisitorToken } from '../api/getVisitorToken'; /** * A util to set or refresh client token * * @param params.userId the user ID for the current session * @param params.displayName the user's displayName for the current session * @param params.deviceId Manual override of the user's device id (for device management) * @param params.authToken The authentication token - necessary when network option is set to secure * @param options get bot token options * @param options.setAccessTokenCookie The authentication token - necessary when network option is set to secure * @returns token & user info * * @category private * @async */ export declare const setVisitorClientToken: (params: Parameters[0]) => Promise<{ accessToken: string; users: Amity.RawUser[]; userType: "signed-in" | "visitor" | "bot"; }>; //# sourceMappingURL=setVisitorClientToken.d.ts.map