import type { ModelFunction } from 'ml-ransac'; import type { Point } from '../../geometry/index.js'; /** * Apply a given transform to a set of points. * @param points - Points to process. * @param model - The transformation function. * @returns The transformed points. */ export declare function applyAffineTransfom(points: Point[], model: ModelFunction): Point[]; //# sourceMappingURL=applyAffineTransform.d.ts.map