import { ResourceConfig, ConcreteResourceInstance, Resource } from '../resource'; import { AttachmentInstance } from './Attachments'; import { DeliveryLeadTimeInstance } from './DeliveryLeadTimes'; import { MarketInstance } from './Markets'; import { ShippingCategoryInstance } from './ShippingCategories'; export interface ShippingMethodAttributes { name: string; disabled_at: string; currency_code: string; price_amount_cents: number; price_amount_float: number; formatted_price_amount: string; free_over_amount_cents: number; free_over_amount_float: number; formatted_free_over_amount: string; price_amount_for_shipment_cents: number; price_amount_for_shipment_float: number; formatted_price_amount_for_shipment: string; } export interface ShippingMethodRelationships { market: MarketInstance; shipping_zone: any; shipping_category: ShippingCategoryInstance; delivery_lead_time_for_shipment: DeliveryLeadTimeInstance; attachments: AttachmentInstance[]; } export declare type ShippingMethodInstance = ConcreteResourceInstance; export declare const ShippingMethodsConfig: ResourceConfig; export declare const ShippingMethods: Resource; //# sourceMappingURL=ShippingMethods.d.ts.map