import "./Section.scss"; import React, { Component } from "react"; import { ChartData } from "../../interfaces/rendererParams"; interface SectionProps { components: any; filterLabels?: string[]; onChartDataChange?: (chartData: ChartData) => void; onMoreClick?: (event: React.MouseEvent, componentIndex: number) => void; id?: number; subtitle?: string; title?: string; code?: string; hideSettings?: boolean; } declare class Section extends Component { handleDataChange: (chartData: ChartData) => void; handleMoreClick: (componentIndex: number) => (event: React.MouseEvent) => void; render(): JSX.Element; } export default Section;