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