import { Links } from "../types"; export declare type ShippingMethod = { id: string; title: string; description: string; _links: Links; }; export declare type ShippingMethodByIdRequestType = { id: string; };