import { default as React } from 'react'; export interface SparklineProps { /** Data points */ data: number[]; /** Width */ width?: number; /** Height */ height?: number; /** Line color */ color?: string; /** Fill area */ fill?: boolean; /** Additional className */ className?: string; } /** * Sparkline Component * * Mini inline chart for showing trends. * Renders a simple line chart without axes. * * @example * ```tsx * * ``` */ export declare const Sparkline: React.FC; //# sourceMappingURL=sparkline.d.ts.map