import type { DimWeightInput, DimWeightResult } from './types.js'; /** * Calculate Dimensional Weight for shipping * * Dimensional weight (volumetric weight) is used by carriers to charge * for lightweight but bulky packages. The billable weight is the greater * of actual weight or dimensional weight. * * @param input - Package dimensions and weight * @returns Dimensional weight calculation results */ export declare function dimWeight(input: DimWeightInput): DimWeightResult; //# sourceMappingURL=dimWeight.d.ts.map