import { Base, Point, Type } from "./type";
import { PathSegmentCollection } from "./PathSegmentCollection";
/**
 * @hidden
 */
export declare class PathFigure extends Base {
    static $t: Type;
    constructor();
    _segments: PathSegmentCollection;
    get segments(): PathSegmentCollection;
    set segments(a: PathSegmentCollection);
    _startPoint: Point;
    get startPoint(): Point;
    set startPoint(a: Point);
    _isFilled: boolean;
    get isFilled(): boolean;
    set isFilled(a: boolean);
    _isClosed: boolean;
    get isClosed(): boolean;
    set isClosed(a: boolean);
}
