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