import BaseClass from "../utils/BaseClass"; import { MarketCollection } from './Market'; import { ShippingZoneCollection } from './ShippingZone'; import { ShippingCategoryCollection } from './ShippingCategory'; import { DeliveryLeadTimeCollection } from './DeliveryLeadTime'; import { SingleRelationship } from "../typings/Library"; export declare class ShippingMethodCollection extends BaseClass { static className: string; name: string; disabledAt: Date; currencyCode: Date; priceAmountCents: number; priceAmountFloat: number; formattedPriceAmount: string; freeOverAmountCents: number; freeOverAmountFloat: number; formattedFreeOverAmount: string; priceAmountForShipmentCents: number; priceAmountForShipmentFloat: number; formattedPriceAmountForShipment: string; id: string; createdAt: Date; updatedAt: Date; reference: string; referenceOrigin: string; metadata: object; shipmentId?: string; market: () => SingleRelationship; shippingZone: () => SingleRelationship; shippingCategory: () => SingleRelationship; deliveryLeadTimeForShipment: () => SingleRelationship; static define(): void; } declare const ShippingMethod: import("../typings/Library").BaseResource; export default ShippingMethod;