/** Deterministic short hash of arbitrary params for cache keys */ export declare function hashParams(params: Record): string; /** Get a cached value. Returns null on miss or expiry. */ export declare function cacheGet(key: string): Promise; /** Store a value with TTL in seconds. */ export declare function cacheSet(key: string, value: unknown, ttlSeconds: number): Promise; //# sourceMappingURL=cache.d.ts.map