import React from 'react'; import type { SparklineChartPoint } from './useSparklineGeometry'; import type { SparklineAnimationEasing } from './types'; export interface AnimatedSparklineProps { strokePath: string; fillPath?: string | null; pathLength: number; strokeColor: string; strokeWidth: number; fillColor: string; fillOpacity: number; showPoints: boolean; pointSize: number; highlightLast: boolean; points: SparklineChartPoint[]; gradientId?: string; dataSignature: string; disabled?: boolean; visible?: boolean; highlightExtremaConfig?: { showMin: boolean; showMax: boolean; color: string; radius: number; outlineColor: string; outlineWidth: number; }; minPoint?: SparklineChartPoint | null; maxPoint?: SparklineChartPoint | null; animationConfig?: { enabled: boolean; duration: number; delay: number; easing: SparklineAnimationEasing; }; } export declare const AnimatedSparkline: React.FC;