import { Item } from "./Item";
import { PointF } from "../../Math/PointF";
import { Color } from "../../Colors";
export declare class PolylineItem extends Item {
    private _width;
    private _color;
    private _points;
    constructor(points?: PointF[]);
    get width(): number;
    set width(value: number);
    get color(): Color;
    set color(value: Color);
    get sourcePoints(): PointF[];
    set sourcePoints(value: PointF[]);
    static type: string;
    type: string;
    protected _copy(source: PolylineItem, destination: PolylineItem, generateNewIds: boolean, appropriateParentContainer: boolean): void;
    equals(other: PolylineItem): any;
    clone(generateNewIds?: boolean, appropriateParentContainer?: boolean): PolylineItem;
}
