import { Component } from 'react'; interface chartGalleryProps { title: string; multiple: boolean; maxSelectable: number; onChange: Function; graphSpec: object[]; description: string; currentVisShow: boolean; plottingScale: number; } declare class ChartGalleryComponent extends Component { constructor(props: any); onItemSelected(index: any): void; removeDeletedCharts(): void; render(): JSX.Element; } export default ChartGalleryComponent;