import type { DoubleMatrix } from 'cheminfo-types'; /** * Get min and max Z. * @param matrix - matrix [rows][cols]. */ export declare function matrixMinMaxZ(matrix: DoubleMatrix): { max: number; min: number; }; //# sourceMappingURL=matrixMinMaxZ.d.ts.map