import { Point2D } from "../../misc";
/**
 * 线
 */
export declare class Line {
    points: Point2D[];
    /** 线宽 */
    width: number;
    /** 颜色 */
    color: string;
    /** 是否显示 */
    enable: boolean;
    /** 构造函数 */
    constructor();
}
