import type { NumberArray } from 'cheminfo-types'; /** * This function calculate the norm of a vector. * @example xNorm([3, 4]) -> 5 * @param array - array * @returns - calculated norm */ export declare function xNorm(array: NumberArray): number; //# sourceMappingURL=xNorm.d.ts.map