///
import { ChartProps } from '../../../../props';
/**
* A React component used for easily switching chart types or rendering multiple series of different chart types.
*
* @example
* A chart component displaying total revenue per quarter from the Sample ECommerce data model. The component is currently set to show the data in a column chart.
*
* ```tsx
* import { Chart } from '@sisense/sdk-ui';
* import { measureFactory } from '@sisense/sdk-data';
* import * as DM from './sample-ecommerce';
*
* const CodeExample = () => (
*
* );
*
* export default CodeExample;
* ```
*
*
*
* @param props - Chart properties
* @returns Chart component representing a chart type as specified in `ChartProps.`{@link ChartProps.chartType | chartType}
* @shortDescription Common component for rendering charts of different types including table
* @group Charts
*/
export declare const Chart: import("react").FunctionComponent;