import { Point } from '../../math/geometry/point'; export declare abstract class SegmentBase { abstract get Start(): Point; abstract get End(): Point; get Direction(): Point; toString(): string; }