import type { ReadonlyVec, Vec } from "./api.js";
/**
 * Takes an array of vectors and computes componentwise maximum. 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 maxBounds: (out: Vec | null, src: ReadonlyVec[]) => Vec<number>;
//# sourceMappingURL=max-bounds.d.ts.map