/** 缓存token */
declare const set: (token: string) => void;
/** 获取token缓存 */
declare const get: () => string | undefined;
/** token 是否过期 */
declare const isExpired: (accessToken?: string) => boolean;
export { set, get, isExpired, };
