import ZSSdk from '../sdk/zs_sdk'; import { CasdoorConfig } from '../types'; import { SdkConfig } from 'casdoor-js-sdk/lib/cjs/sdk'; export declare const initAuthSdk: (config: CasdoorConfig) => ZSSdk; export declare const getAuthSDK: () => ZSSdk; export declare const getSdkConfig: () => SdkConfig; export declare const safeLocalStorage: { getItem: (key: string) => string | null; setItem: (key: string, value: string) => void; removeItem: (key: string) => void; }; export declare const switchTenant: (tenant: string) => Promise; export declare const getCurrentTenant: () => string; export declare const getAccessToken: (tenant: string) => Promise; export declare const getRefreshToken: (tenant: string) => Promise; export declare const updateToken: (tenant: string, accessToken: string, refreshToken?: string) => Promise; //# sourceMappingURL=auth.d.ts.map