import type { Cache } from "./Cache.js"; export declare class MemoryCache implements Cache { private readonly ttlMs; private readonly store; constructor(ttlMs?: number); get(key: string): T | undefined; set(key: string, value: T): void; delete(key: string): void; clear(): void; }