import { type PropsWithChildren } from 'react'; import type { SingleValueRef } from './types/single-value-ref.js'; import type { SingleValueProps } from './types/single-value.js'; /** * The `SingleValue` is a simple and concise representation of a single data point * or metric , which can either be a text or a number. * @public */ export declare const SingleValue: ((props: SingleValueProps & { children?: import("react").ReactNode | undefined; } & import("react").RefAttributes) => React.ReactElement | null) & { 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; }; Trend: (props: import("../index.js").TrendProps) => 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; };