import { Point } from "../../core-types";
export declare class MagneticLine {
    start: Point;
    end: Point;
    constructor(start: Point, end: Point);
}
