import { Application, AuthManager, Cache, Database, Storer as IStorer } from '@tego/server'; import { AuthModel } from './model/authenticator'; export declare class Storer implements IStorer { db: Database; cache: Cache; app: Application; authManager: AuthManager; key: string; constructor({ app, db, cache, authManager, }: { app?: Application; db: Database; cache: Cache; authManager: AuthManager; }); renderJsonTemplate(authenticator: any): any; getCache(): Promise; setCache(authenticators: AuthModel[]): Promise; get(name: string): Promise; }