/// import { IndicatorChartProps } from '../../../props'; /** * A React component that provides various options for displaying one or two numeric values as a number, gauge or ticker. * * @example * ```tsx * import { IndicatorChart } from '@sisense/sdk-ui'; * import { measureFactory } from '@sisense/sdk-data'; * import * as DM from './sample-ecommerce'; * * const CodeExample = () => ( * * ); * * export default CodeExample; * ``` * * * * Numeric indicator variant with a secondary value: * * ```tsx * * ``` * * * * Ticker style indicator variant: * * ```tsx * * ``` * * * @param props - Indicator chart properties * @returns Indicator Chart component * @group Charts */ export declare const IndicatorChart: import("react").FunctionComponent;