import * as React from 'react'; import { ReactNode } from 'react'; export interface ChartContainerProps { chart: React.ReactElement; title?: ReactNode; button?: ReactNode; settingsPanel?: ReactNode; minHeight?: string | number; } declare const ChartContainer: (props: ChartContainerProps) => JSX.Element; export default ChartContainer;