import type { ContainerFitInput, ContainerFitResult } from './types.js'; /** * Calculate how many boxes fit in a container * * This function calculates the optimal number of boxes that can fit * in a container, considering different orientations if rotation is allowed. * * @param input - Container and cargo dimensions * @returns Number of units that fit */ export declare function containerFit(input: ContainerFitInput): ContainerFitResult; //# sourceMappingURL=containerFit.d.ts.map