import * as z from "zod/v4-mini";
export type GetRateGlobals = {
/**
* Optional string used to pick a non-default API version to use. See our API version guide.
*/
shippoApiVersion?: string | undefined;
};
export type GetRateRequest = {
/**
* Object ID of the rate
*/
rateId: string;
};
/** @internal */
export type GetRateRequest$Outbound = {
RateId: string;
};
/** @internal */
export declare const GetRateRequest$outboundSchema: z.ZodMiniType;
export declare function getRateRequestToJSON(getRateRequest: GetRateRequest): string;
//# sourceMappingURL=getrate.d.ts.map