import * as z from "zod/v3"; export type ListTransactionCapturesGlobals = { merchantAccountId?: string | undefined; }; export type ListTransactionCapturesRequest = { /** * The unique identifier of the transaction. */ transactionId: string; /** * The ID of the merchant account to use for this request. */ merchantAccountId?: string | null | undefined; }; /** @internal */ export type ListTransactionCapturesRequest$Outbound = { transaction_id: string; merchantAccountId?: string | null | undefined; }; /** @internal */ export declare const ListTransactionCapturesRequest$outboundSchema: z.ZodType; export declare function listTransactionCapturesRequestToJSON(listTransactionCapturesRequest: ListTransactionCapturesRequest): string; //# sourceMappingURL=listtransactioncaptures.d.ts.map