import { type FunctionComponent } from 'react';
import { ChartWidgetProps } from './types';
/**
* The Chart Widget component extending the {@link Chart} component to support widget style options.
* It can be used along with the {@link DrilldownWidget} component to support advanced data drilldown.
*
* @example
* Example of using the `ChartWidget` component to
* plot a bar chart of the `Sample ECommerce` data source hosted in a Sisense instance.
* ```tsx
*
* ```
*
*
* @param props - ChartWidget properties
* @returns ChartWidget component representing a chart type as specified in `ChartWidgetProps.`{@link ChartWidgetProps.chartType | chartType}
* @group Dashboards
*/
export declare const ChartWidget: FunctionComponent;