///
import { BoxplotChartProps } from '../../../../props';
/**
* A React component representing data in a way that visually describes the distribution,
* variability, and center of a data set along an axis.
*
* @example
* Boxplot chart displaying data from the Sample ECommerce data model.
*
* ```tsx
* import { BoxplotChart } from '@sisense/sdk-ui';
* import * as DM from './sample-ecommerce';
*
* const CodeExample = () => (
*
* );
*
* export default CodeExample;
* ```
*
*
*
* @param props - Boxplot chart properties
* @returns Boxplot Chart component
* @group Charts
*/
export declare const BoxplotChart: import("react").FunctionComponent;