declare class PassportCache { private name; private cachedMS; private pool; constructor(name: string, cachedMS: number); private getKey; saveAsync(key: string, value: string): Promise; getAsync(key: string): Promise; removeAsync(key: string): Promise; } export declare function getPassportCache(name: string, cachedMS: number): PassportCache; export declare function getOauthCache(name: string): PassportCache; export {};