import { type PropsWithChildren, type ReactElement, type ReactNode } from 'react'; import type { TrendProps } from './components/trend/types/trend-props.js'; import type { SingleValueBaseProps } from './types/single-value-base-props.js'; import { type SparklineDisplayProps } from '../sparkline-display/SparklineDisplay.js'; type SingleValueRendererProps = PropsWithChildren & { sparklineProps?: SparklineDisplayProps; sparklineChildren?: ReactNode; trendProps?: TrendProps; loading?: boolean; emptyState?: ReactNode; errorState?: ReactNode | ((errorMessage: string) => ReactElement); }; export declare const SingleValueRenderer: (props: SingleValueRendererProps) => import("react/jsx-runtime.js").JSX.Element; export {};