import React from 'react'; export interface bubbleChart { width?: number; height?: number; size?: number; font?: string; data?: Array>; onError?: (error: any, payload: Record) => void; } declare const BubbleChart: React.FC; export default BubbleChart;