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").JSX.Element; displayName: string; } & { ThresholdIndicator: { (props: PropsWithChildren): null; displayName: string; }; EmptyState: ({ children }: import("../index.js").EmptyStateProp) => import("react/jsx-runtime").JSX.Element; ErrorState: ({ children }: import("../index.js").ErrorStateProps) => import("react/jsx-runtime").JSX.Element; XAxis: (_: import("../index.js").SparklineXAxisProps) => null; YAxis: (_: import("../index.js").SparklineYAxisProps) => null; };