import { type PropsWithChildren } from 'react'; import type { SparklineProps } from '../../core/components/sparkline-display/types/sparkline-props.js'; /** * Slot props for the Sparkline component within SingleValue. * @public */ export type SingleValueSparklineProps = PropsWithChildren>; /** * Slot for the Sparkline component * @public */ export declare const Sparkline: ((props: PropsWithChildren) => null) & { ThresholdIndicator: { (props: PropsWithChildren): null; displayName: string; }; XAxis: (_: import("../../index.js").SparklineXAxisProps) => null; YAxis: (_: import("../../index.js").SparklineYAxisProps) => null; EmptyState: ({ children }: import("../../index.js").EmptyStateProp) => import("react/jsx-runtime").JSX.Element; ErrorState: ({ children }: import("../../index.js").ErrorStateProps) => import("react/jsx-runtime").JSX.Element; };