import { type PropsWithChildren } from 'react'; import type { SparklineProps } from '../core/components/sparkline-display/types/sparkline-props.js'; /** * The `Sparkline` is a compact and simple data visualization that displays * a trend or pattern of data in a small, condensed format. It typically consists * of a single line or area graph, without axes or labels, that represents the * variation of data points over time. * @public */ export declare const Sparkline: { ({ children, ...props }: PropsWithChildren): import("react/jsx-runtime.js").JSX.Element; displayName: string; } & { Threshold: (props: PropsWithChildren) => null; EmptyState: ({ children }: import("../core/slots/chart-states/EmptyStateSlot.js").EmptyStateSlotProps) => import("react/jsx-runtime.js").JSX.Element; ErrorState: ({ children }: import("../core/slots/chart-states/ErrorStateSlot.js").ErrorStateSlotProps) => import("react/jsx-runtime.js").JSX.Element; XAxis: (_: import("../index.js").SparklineXAxisProps) => null; YAxis: (_: import("../index.js").SparklineYAxisProps) => null; };