import type { Point } from '../types/index.ts'; export interface XYObjectJoinXOptions { /** * Limit to join the data. * @default Number.EPSILON */ xError?: number; } /** * xyObjectJoinX. * @param points - Array of growing points {x,y}. * @param options - Options. */ export declare function xyObjectJoinX(points: Point[], options?: XYObjectJoinXOptions): Point[]; //# sourceMappingURL=xyObjectJoinX.d.ts.map