import { type SVGAttributes } from "react"; export interface SparklineProps extends Omit, "children"> { data: number[]; width?: number; height?: number; color?: string; showArea?: boolean; } export declare const Sparkline: import("react").ForwardRefExoticComponent>;