import type { ReadonlyVec, Vec } from "./api.js"; /** * Takes an array of vectors and computes componentwise minimum. Writes result * to `out` (or a new vector). If `out` is given is MUST have at least the size * of given input vectors (otherwise some components will have NaN results). * * @param out - * @param src - */ export declare const minBounds: (out: Vec | null, src: ReadonlyVec[]) => Vec; //# sourceMappingURL=min-bounds.d.ts.map