import React from 'react'; import { Axis, Boundary, DirectionX, DirectionY, HoveredMainValue, Item, ScaleLinear } from "../../index"; declare type GradientProps = { withGradient: false; } | { withGradient: true; gradientDirectionX: DirectionX; gradientDirectionY: DirectionY; areaBottom: number; }; declare type BoundariesProps = { boundaries?: never; } | { boundaries: readonly Boundary[]; boundariesAxis: Axis; boundariesGradientId: string; }; declare type Props = { values: readonly Item[]; color: string; hasDotRadius?: boolean; defaultDotRadius: number; lineClipPath: string; dotsClipPath: string; scaleX: ScaleLinear; scaleY: ScaleLinear; hoveredMainValue: HoveredMainValue; isHorizontal: boolean; } & GradientProps & BoundariesProps; export declare const LINE_WIDTH = 2; export declare const LineWithDots: React.FC; export {};