import type { BlacklistStore } from './BlacklistStore.js'; /** * In-memory blacklist suitable for tests and single-node deployments. */ export declare class MemoryBlacklistStore implements BlacklistStore { private readonly entries; /** * @inheritdoc */ set(key: string, ttlSeconds: number): Promise; /** * @inheritdoc */ has(key: string): Promise; /** * @inheritdoc */ delete(key: string): Promise; /** * @inheritdoc */ flush(): Promise; } //# sourceMappingURL=MemoryBlacklistStore.d.ts.map