import type { GranularityValues } from '@kong-ui-public/analytics-utilities'; import type { ChartLegendSortFn, ChartTooltipSortFn, KChartData } from '../../types'; import type { ScatterChartColors } from '../../utils'; import 'chartjs-adapter-date-fns'; import 'chart.js/auto'; interface ScatterChartProps { chartData?: KChartData; tooltipTitle: string; metricUnit?: string; xMetric?: string; xMetricUnit?: string; granularity: GranularityValues; timeRangeMs?: number; metricAxesTitle?: string; dimensionAxesTitle?: string; syntheticsDataKey?: string; chartLegendSortFn?: ChartLegendSortFn; chartTooltipSortFn?: ChartTooltipSortFn; tooltipMetricDisplay?: string; shadeOutlierRegion?: boolean; themeColors?: ScatterChartColors; } declare const __VLS_export: import("vue").DefineComponent & Readonly<{}>, { themeColors: ScatterChartColors; xMetric: string; xMetricUnit: string; chartData: KChartData; syntheticsDataKey: string; metricUnit: string; metricAxesTitle: string; dimensionAxesTitle: string; chartLegendSortFn: ChartLegendSortFn; chartTooltipSortFn: ChartTooltipSortFn; tooltipMetricDisplay: string; timeRangeMs: number; shadeOutlierRegion: boolean; }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>; declare const _default: typeof __VLS_export; export default _default; //# sourceMappingURL=ScatterChart.vue.d.ts.map