import { CartDTO, FindConfig } from "@medusajs/framework/types"; /** * The details of the cart to retrieve. */ export interface RetrieveCartStepInput { /** * The ID of the cart to retrieve. */ id: string; config?: FindConfig; } export declare const retrieveCartStepId = "retrieve-cart"; /** * This step retrieves a cart's details. */ export declare const retrieveCartStep: import("@medusajs/framework/workflows-sdk").StepFunction; //# sourceMappingURL=retrieve-cart.d.ts.map