export declare class Line { /** * start point of the line */ start_point: number[]; /** * end point of the line (Treated as point if start_point and end_point is the same */ end_point: number[]; }