import { PathSegment } from "./PathSegment";
import { PointCollection } from "./PointCollection";
import { PathSegmentType } from "./PathSegmentType";
import { Type } from "./type";
/**
 * @hidden
 */
export declare class PolyLineSegment extends PathSegment {
    static $t: Type;
    constructor();
    _points: PointCollection;
    get points(): PointCollection;
    set points(a: PointCollection);
    protected get_a(): PathSegmentType;
    get a(): PathSegmentType;
}
