/// import { KpiChartProps } from '../../../props'; /** * A React component that displays a single headline metric as a card, optionally with a * sparkline of its trend and a readout comparing it against a baseline. * * Given just a measure, the card shows that number on its own. Adding a `category` — typically * a date dimension — gives it a sparkline and a caption for the period being shown. Adding a * `comparison` makes it also report how the metric moved: against the previous period, against * a second measure, or against a target. * * @example * ```tsx * import { KpiChart } from '@sisense/sdk-ui'; * import * as DM from './sample-ecommerce'; * import { measureFactory } from '@sisense/sdk-data'; * * const CodeExample = () => { * return ( * * ); * }; * * export default CodeExample; * ``` * * * @param props - KPI chart properties * @returns KPI Chart component * @group Charts */ export declare const KpiChart: import("react").FunctionComponent;