import CacheStore from '../cache/CacheStore'; import Session from './Session'; import SessionStore from './SessionStore'; export default class CacheBasedSessionStore implements SessionStore { _cache: CacheStore; _expiresIn: number; constructor(cache: CacheStore, expiresIn?: number); init(): Promise; read(key: string): Promise; all(): Promise; write(key: string, sess: Session): Promise; destroy(key: string): Promise; } //# sourceMappingURL=CacheBasedSessionStore.d.ts.map