import { Position } from "../types"; import { ShapeLogicImplementation } from "./shape"; /** * @shape * @defaultValue { "type": "rectangle", "v1": { "x": -50, "y": -50 }, "v2": { "x": 50, "y": 50 } } */ export interface Rectangle { type: "rectangle"; v1: Position; v2: Position; } export declare const rectangleLogic: ShapeLogicImplementation;