import { I as IdempotencyStore } from '../index-2mzMgi45.mjs'; interface Redis { get(key: string): Promise; set(key: string, value: string, { ex }: { ex: number; }): Promise; } declare function createUpstashIdempotencyStore(redis: Redis, ttlSeconds?: number): IdempotencyStore; export { createUpstashIdempotencyStore };