/**
 * Note: assumes that boxes to be contained are strictly smaller than the container in both dimensions
 * @param {AABB2} container
 * @param {Array.<AABB2|{locked?:boolean}>} boxes
 */
export function forceIntoBox(container: AABB2, boxes: Array<AABB2 | {
    locked?: boolean;
}>): void;
//# sourceMappingURL=forceIntoBox.d.ts.map