import type { DrizzleExecutor } from "../../drizzle.js"; import { idempotencyKeys } from "../../schema.js"; export type IdempotencyKeyRow = typeof idempotencyKeys.$inferSelect; export declare function idempotencyRequestKey(storageKey: string): import("drizzle-orm").SQL | undefined; export declare function idempotencyKeyFind(executor: DrizzleExecutor, storageKey: string): Promise; export declare function idempotencyLeaseToken(value: unknown): string | undefined; export declare function idempotencyTimestamp(value: number): string; //# sourceMappingURL=idempotencyKey.d.ts.map