import { Matrix } from 'ml-matrix'; import type { Point } from '../../geometry/index.js'; /** * Convert row/column points to a matrix. * Last row is padded with **ones** (ignore third dimension). * @param points - Points to process. * @returns The matrix. */ export declare function getMatrixFromPoints(points: Point[]): Matrix; //# sourceMappingURL=getMatrixFromPoints.d.ts.map