import { QueryCacheStore } from "./query-cache-store.js"; export declare class MemoryQueryCache implements QueryCacheStore { private readonly now; private readonly entries; constructor(now?: () => number); getAsync(key: string): Promise; setAsync(key: string, value: T, ttlMs: number): Promise; deleteAsync(key: string): Promise; }