import './LineWithDots.css'; import React from 'react'; import { FormatValue } from "../../../types"; import { DirectionX, DirectionY, HoveredDotValue, HoveredMainValue, Item, ScaleLinear } from '../LinearChart'; declare type GradientProps = { withGradient: false; } | { withGradient: true; gradientDirectionX?: DirectionX; gradientDirectionY: DirectionY; areaBottom: number; }; declare type Props = { values: readonly Item[]; color: string; hasDotRadius?: boolean; defaultDotRadius: number; lineClipPath: string; dotsClipPath: string; scaleX: ScaleLinear; scaleY: ScaleLinear; hoveredMainValue: HoveredMainValue; hoveredDotValue: HoveredDotValue; showValues?: boolean; formatValueForDot?: FormatValue; dashed?: boolean; } & GradientProps; export declare const LINE_WIDTH = 2; export declare const LineWithDots: React.FC; export {};