import Authorizer from "./authorizer"; import type { ConfigPlugin } from "../../core/config"; export { default as Authorizer } from "./authorizer"; export { default as SessionStorage } from "./storage"; export type BasicSession = { access_token?: string; accessToken?: string; token?: string; refreshToken?: string; refresh_token?: string; } & Record; export default function AuthorizationPlugin(authorizer: Authorizer, options?: { minTryRetryInterval: number; maxTryRetryInterval: number; retryTimes: number; }): ConfigPlugin;