import * as z from "zod/v4-mini"; export type GetRefundGlobals = { /** * Optional string used to pick a non-default API version to use. See our API version guide. */ shippoApiVersion?: string | undefined; }; export type GetRefundRequest = { /** * Object ID of the refund to update */ refundId: string; }; /** @internal */ export type GetRefundRequest$Outbound = { RefundId: string; }; /** @internal */ export declare const GetRefundRequest$outboundSchema: z.ZodMiniType; export declare function getRefundRequestToJSON(getRefundRequest: GetRefundRequest): string; //# sourceMappingURL=getrefund.d.ts.map