import { IAuthClient, IStorage } from '@8base/utils'; import { AUTH_STRATEGIES } from './constants'; interface IAuthClientCreateOptions { strategy: AUTH_STRATEGIES | string; storageOptions?: { storage?: IStorage; storageKey?: string; initialState?: Object; }; subscribable?: boolean; } export declare class Auth { static createClient(options: IAuthClientCreateOptions, clientOptions: any): IAuthClient; } export {}; //# sourceMappingURL=Auth.d.ts.map