/** * @usevyre/react — Sparkline * * AI CONTEXT: * ┌──────────────────────────────────────────────────────────────────┐ * │ Component: Sparkline │ * │ Import: import { Sparkline } from "@usevyre/react" │ * │ │ * │ Tiny inline chart — no axis, legend, or tooltip. For Stat cards │ * │ and table cells. │ * │ data = number[] (required) │ * │ variant = "line"(default) | "area" | "bar" │ * │ color? = string (token, default --vyre-color-semantic-accent) │ * │ width? = number (default 80) height? = number (default 24) │ * └──────────────────────────────────────────────────────────────────┘ */ import React from "react"; export interface SparklineProps { data: number[]; variant?: "line" | "area" | "bar"; color?: string; width?: number; height?: number; className?: string; } export declare const Sparkline: React.FC;