import { Point } from "../types/Point.js";
import { ShapeDefinition } from "./ShapeDefinition.js";
/**
 * Class representing a line definition.
 */
export declare class LineDefinition extends ShapeDefinition {
    /** The starting point of the line. */
    start: Point;
    /** The ending point of the line. */
    end: Point;
    /**
     * Creates an instance of LineDefinition.
     *
     * @param start - The starting point of the line.
     * @param end - The ending point of the line.
     */
    constructor(start: Point, end: Point);
}
