/** * SvSparkline - a tiny inline chart (line / area / bar / win-loss) from a number * array. A thin SVG renderer over the pure `buildSparkline` geometry (shared * with the grid's sparkline cell). Theme-driven (defaults to `--sg-accent`). * * ```svelte * * ``` */ import { type SparklineType } from './sparkline'; type Props = { data: ReadonlyArray; type?: SparklineType; width?: number; height?: number; color?: string; negativeColor?: string; lineWidth?: number; /** Fix the value scale instead of deriving it from the data. */ min?: number; max?: number; /** End-cap dot on the last point (line / area). Default true. */ lastPoint?: boolean; ariaLabel?: string; }; declare const SvSparkline: import("svelte").Component; type SvSparkline = ReturnType; export default SvSparkline;