import { HttpContextToken } from '@angular/common/http';
/**
 * Whether to allow anonymous login
 *
 * 是否允许匿名登录
 *
 * @example
 * this.http.post(`login`, {
 *  name: 'cipchk', pwd: '123456'
 * }, {
 *  context: new HttpContext().set(ALLOW_ANONYMOUS, true)
 * })
 */
export declare const ALLOW_ANONYMOUS: HttpContextToken<boolean>;
