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