import { FC, SVGAttributes } from 'react'; import { LineData, LineCurve } from 'eazychart-core/src/types'; export interface LinePathProps extends SVGAttributes { shapeData?: LineData; curve?: LineCurve; beta?: number; } export declare const LinePath: FC;