import * as z from "zod/v3"; export type GetTransactionRefundSettlementGlobals = { merchantAccountId?: string | undefined; }; export type GetTransactionRefundSettlementRequest = { /** * The unique identifier of the transaction. */ transactionId: string; /** * The unique identifier of the refund settlement. */ settlementId: string; /** * The ID of the merchant account to use for this request. */ merchantAccountId?: string | null | undefined; }; /** @internal */ export type GetTransactionRefundSettlementRequest$Outbound = { transaction_id: string; settlement_id: string; merchantAccountId?: string | null | undefined; }; /** @internal */ export declare const GetTransactionRefundSettlementRequest$outboundSchema: z.ZodType; export declare function getTransactionRefundSettlementRequestToJSON(getTransactionRefundSettlementRequest: GetTransactionRefundSettlementRequest): string; //# sourceMappingURL=gettransactionrefundsettlement.d.ts.map