import type { Point } from './Point';
/**
 * Represents a line segment with begin and end points
 */
export declare class Segment {
    private beginPoint;
    private endPoint;
    constructor(beginPoint: Point, endPoint: Point);
    begin(): Point;
    end(): Point;
}
//# sourceMappingURL=Segment.d.ts.map