import { ServiceError } from '@grpc/grpc-js'; import { ErrorDetail, GatewayError } from './gatewayerror'; /** * CommitStatusError is thrown when a failure occurs obtaining the commit status of a transaction. */ export declare class CommitStatusError extends GatewayError { /** * The ID of the transaction. */ transactionId: string; constructor(properties: Readonly<{ code: number; details: ErrorDetail[]; cause: ServiceError; transactionId: string; message?: string; }>); } //# sourceMappingURL=commitstatuserror.d.ts.map