import type { Rectangle } from '../rectangle.js'; import type { Point } from '../simplify-path.js'; import type { CreateGraphReturned } from './types.js'; /** * The function checks if manual node generation is applicable under the following conditions: * 1. There are no rectangles. * 2. There is only one rectangle and two points, and: * - Both points are on the left, right, top, or bottom of the rectangle. * - At least one point is inside the rectangle. */ export declare function shouldManualGenerateGraph(rectangles: Rectangle[], points: Point[]): boolean; export declare function manualGenerateGraph(rectangles: Rectangle[], points: Point[]): CreateGraphReturned; //# sourceMappingURL=manual-generate-graph.d.ts.map