import { SVGAttributes } from "react"; export interface GlassSparklineProps extends SVGAttributes { data?: number[]; width?: number | string; height?: number; /** * Fill the available inline space and use a preview-safe height. * Default rendering remains the existing fixed 120x32 sparkline. */ compact?: boolean; /** * Alias for compact sizing when the sparkline is rendered inside a bounded * card, widget, or preview surface. */ contained?: boolean; /** * Optional rendered max-height. The SVG viewBox remains numeric so the path * math stays deterministic while the rendered box can be constrained. */ maxHeight?: number | string; stroke?: string; fill?: string; className?: string; } export declare function GlassSparkline({ data, width, height, compact, contained, maxHeight, stroke, fill, className, style, preserveAspectRatio, ...rest }: GlassSparklineProps): import("react/jsx-runtime").JSX.Element; export default GlassSparkline; //# sourceMappingURL=GlassSparkline.d.ts.map