import { TTLCache } from '@isaacs/ttlcache'; import type { TokenVerificationData } from '../types'; import type { ITokenVerifierCache } from './types'; export declare class MemoryTokenVerifierCache implements ITokenVerifierCache { protected driver: TTLCache; constructor(); get(token: string): Promise; set(token: string, data: TokenVerificationData, seconds: number): Promise; } //# sourceMappingURL=memory.d.ts.map