import React from 'react';
import { IChart } from '../Chart/Chart';
export interface IBubbleChart extends IChart {
}
declare const BubbleChart: React.FC<IBubbleChart>;
export default BubbleChart;
