import { XYShape } from "./XYShape.js"; export type Rectangle = { x1: number; x2: number; y: number; }; export declare function convertToRectangles(shape: XYShape): { continuous: readonly Rectangle[]; discrete: readonly [number, number][]; }; export declare function yTransformDiscrete(shape: XYShape): XYShape; export declare function yTransformContinuous(shape: XYShape): { continuous: XYShape; discrete: XYShape; }; //# sourceMappingURL=yTransform.d.ts.map