import * as React from 'react'; import { TippyProps } from '@tippy.js/react'; export interface IndicatorProps { className?: any; value?: string | number | React.ReactNode; icon?: string; iconHeight?: string; onClick?: (e: any) => void; style?: any; id?: string; description?: TippyProps['content']; label?: string; formatFunction?: (v: string | number | React.ReactNode) => string | number | React.ReactNode; positiveColor?: string; negativeColor?: string; neutralColor?: string; tooltipProps?: Partial; } export declare function Indicator(props: IndicatorProps): JSX.Element;