import { DataResponse, Dimension, Granularity, Measure } from '@embeddable.com/core'; import { ChartCardHeaderProps } from '../../shared/ChartCard/ChartCard'; import { LineChartGroupedProOptionsClickArg } from '../lines.types'; export type LineChartGroupedProProp = { xAxis: Dimension; groupBy: Dimension; measure: Measure; results: DataResponse; reverseXAxis?: boolean; showLegend?: boolean; showLogarithmicScale?: boolean; showTooltips?: boolean; showValueLabels?: boolean; xAxisLabel?: string; yAxisLabel?: string; yAxisRangeMax?: number; yAxisRangeMin?: number; granularity?: Granularity; setGranularity?: (granularity: Granularity) => void; onLineClicked?: (arg: LineChartGroupedProOptionsClickArg) => void; } & ChartCardHeaderProps; declare const LineChartGroupedPro: (props: LineChartGroupedProProp) => import("react").JSX.Element; export default LineChartGroupedPro; //# sourceMappingURL=index.d.ts.map