import type { ShippingInput, ShippingResult } from './types.js'; /** * Calculate shipping cost estimate for different modes * * Supports multiple shipping modes: * - Ocean FCL (Full Container Load): Fixed container rate * - Ocean LCL (Less than Container Load): Per CBM or weight * - Air Freight: Volumetric weight factor * - Express Courier: Premium volumetric rates * - Truck: Distance + weight based * * @param input - Shipment details * @returns Cost estimate * @throws RangeError if weight or volume is not positive, distance is not * positive for truck mode, or the shipping mode is unknown */ export declare function shipping(input: ShippingInput): ShippingResult; //# sourceMappingURL=shipping.d.ts.map