import type { Rectangle } from '../rectangle.js'; import type { Point } from '../simplify-path.js'; import type { Rulers } from './types.js'; /** * Generating a set of horizontal and vertical rulers based on the provided rectangles, points, and margin * @param rectangles * @param points * @param margin [horizontal, vertical] * @returns */ export declare function createRulers(rectangles: Rectangle[], points: Point[], margin: number[]): Rulers; //# sourceMappingURL=create-rulers.d.ts.map