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