/// interface IProps { QueryResult: any; Text: string; groupBy: string; chartType: string; chartSorting?: string; aggregator?: string[]; aggregatorColumn?: string[]; backgroundColorUpstream?: any; setChart?(chart: any): void; setBgColorUpstream?(bgColor: any): void; onDataPointClick?(s: any, array: any, barChartData: any, backgroundColor: any, _chart: any, that: any): void; } export declare function GlobalChart({ QueryResult, Text, groupBy, chartType, chartSorting, aggregator, aggregatorColumn, backgroundColorUpstream, setChart, setBgColorUpstream, onDataPointClick, }: IProps): JSX.Element; export {};