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) => import("react").ReactElement | null) & { 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; }; Trend: (props: import("../index.js").TrendProps) => null; ColorRule: { (_props: import("../index.js").ColorRuleProps): 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; Intent: { (props: import("../../index.js").IntentProps): null; displayName: string; }; Toolbar: { (props: import("./types/single-value-toolbar.js").SingleValueToolbarSlotProps): null; displayName: string; }; };