import React from 'react'; import { Item, NotEmptyItem, ScaleLinear } from "../../index"; declare type SVGPPathAttributes = Omit, 'points'>; declare type Props = SVGPPathAttributes & { points: readonly Item[]; scaleX: ScaleLinear; scaleY: ScaleLinear; }; declare type Segment = { type: 'solid' | 'dashed'; points: readonly NotEmptyItem[]; }; export declare const divideBySegments: (points: readonly Item[]) => readonly Segment[]; export declare const Line: React.FC; export {};