import * as React from 'react'; export interface SparklineProps extends React.SVGAttributes { data: number[]; color?: string; width?: number; height?: number; strokeWidth?: number; } declare function Sparkline({ data, color, width, height, strokeWidth, className, ...props }: SparklineProps): import("react/jsx-runtime").JSX.Element | null; export { Sparkline };