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