import { APIResource } from "../../core/resource.js"; import * as ShipmentsAPI from "../shipments.js"; import { APIPromise } from "../../core/api-promise.js"; import { RequestOptions } from "../../internal/request-options.js"; export declare class Shipments extends APIResource { /** * Advance the simulated shipment for a checkout intent. To trigger delayed or * canceled shipping scenarios, create the checkout intent with a matching shipping * and delivery test product: * https://rye.com/docs/api-v2/testing/test-products#shipping-&-delivery */ advance(checkoutIntentID: string, options?: RequestOptions): APIPromise; } export interface ShipmentAdvanceResponse { shipment: ShipmentsAPI.Shipment; } export declare namespace Shipments { export { type ShipmentAdvanceResponse as ShipmentAdvanceResponse }; } //# sourceMappingURL=shipments.d.ts.map