import { CompareExchangeValue } from "../Operations/CompareExchange/CompareExchangeValue.js"; import { CompareExchangeResultClass } from "../../Types/index.js"; import { ClusterTransactionOperationsBase } from "./ClusterTransactionOperationsBase.js"; import { IClusterTransactionOperations } from "./IClusterTransactionOperations.js"; import { LazyClusterTransactionOperations } from "./Operations/Lazy/LazyClusterTransactionOperations.js"; import { DocumentSession } from "./DocumentSession.js"; export declare class ClusterTransactionOperations extends ClusterTransactionOperationsBase implements IClusterTransactionOperations { constructor(session: DocumentSession); get lazily(): LazyClusterTransactionOperations; getCompareExchangeValue(key: string): Promise>; getCompareExchangeValue(key: string, type: CompareExchangeResultClass): Promise>; getCompareExchangeValues(keys: string[]): Promise<{ [key: string]: CompareExchangeValue; }>; getCompareExchangeValues(keys: string[], type: CompareExchangeResultClass): Promise<{ [key: string]: CompareExchangeValue; }>; getCompareExchangeValues(startsWith: string): Promise<{ [key: string]: CompareExchangeValue; }>; getCompareExchangeValues(startsWith: string, type: CompareExchangeResultClass): Promise<{ [key: string]: CompareExchangeValue; }>; getCompareExchangeValues(startsWith: string, type: CompareExchangeResultClass, start: number): Promise<{ [key: string]: CompareExchangeValue; }>; getCompareExchangeValues(startsWith: string, type: CompareExchangeResultClass, start: number, pageSize: number): Promise<{ [key: string]: CompareExchangeValue; }>; } //# sourceMappingURL=ClusterTransactionOperations.d.ts.map