import * as z from "zod/v3"; export type GetRefundGlobals = { merchantAccountId?: string | undefined; }; export type GetRefundRequest = { /** * 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 GetRefundRequest$Outbound = { refund_id: string; merchantAccountId?: string | null | undefined; }; /** @internal */ export declare const GetRefundRequest$outboundSchema: z.ZodType; export declare function getRefundRequestToJSON(getRefundRequest: GetRefundRequest): string; //# sourceMappingURL=getrefund.d.ts.map