import { Gr4vyCore } from "../core.js"; import { RequestOptions } from "../lib/sdks.js"; import { Gr4vyError } from "../models/errors/gr4vyerror.js"; import { ConnectionError, InvalidRequestError, RequestAbortedError, RequestTimeoutError, UnexpectedClientError } from "../models/errors/httpclienterrors.js"; import * as errors from "../models/errors/index.js"; import { ResponseValidationError } from "../models/errors/responsevalidationerror.js"; import { SDKValidationError } from "../models/errors/sdkvalidationerror.js"; import * as operations from "../models/operations/index.js"; import { APIPromise } from "../types/async.js"; import { Result } from "../types/fp.js"; import { PageIterator } from "../types/operations.js"; /** * List transaction events * * @remarks * Retrieve a paginated list of events related to processing a transaction, including status changes, API requests, and webhook delivery attempts. Events are listed in chronological order, with the most recent events first. */ export declare function transactionsEventsList(client: Gr4vyCore, transactionId: string, cursor?: string | null | undefined, limit?: number | undefined, merchantAccountId?: string | null | undefined, options?: RequestOptions): APIPromise, { cursor: string; }>>; //# sourceMappingURL=transactionsEventsList.d.ts.map