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) & { Threshold: (props: PropsWithChildren) => null; YAxis: (_: import("../../index.js").SparklineYAxisProps) => 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; };