/** The type of fulfillment. */ export declare const FulfillmentType: { readonly Pickup: "PICKUP"; readonly Shipment: "SHIPMENT"; readonly Delivery: "DELIVERY"; readonly InStore: "IN_STORE"; }; export type FulfillmentType = (typeof FulfillmentType)[keyof typeof FulfillmentType];