import { ClusterTransactionOperationsBase } from "../../ClusterTransactionOperationsBase.js"; import { ILazyClusterTransactionOperations } from "../../ILazyClusterTransactionOperations.js"; import { Lazy } from "../../../Lazy.js"; import { CompareExchangeValue } from "../../../Operations/CompareExchange/CompareExchangeValue.js"; import { CompareExchangeResultClass } from "../../../../Types/index.js"; export declare class LazyClusterTransactionOperations extends ClusterTransactionOperationsBase implements ILazyClusterTransactionOperations { getCompareExchangeValue(key: string): Lazy | null>; getCompareExchangeValue(key: string, type: CompareExchangeResultClass): Lazy | null>; getCompareExchangeValues(keys: string[]): Lazy<{ [key: string]: CompareExchangeValue | null; }>; getCompareExchangeValues(keys: string[], type: CompareExchangeResultClass): Lazy<{ [key: string]: CompareExchangeValue | null; }>; } //# sourceMappingURL=LazyClusterTransactionOperations.d.ts.map