import { HeatmapSeriesOption } from 'echarts';
import { GridOption, XAXisOption, YAXisOption } from 'echarts/types/dist/shared';
import { CSSProperties } from 'react';
import { MetricType } from './type';
export declare const DATA_SERIES_TYPE: {
readonly total: 1;
readonly value: 2;
readonly breakdownValue: 3;
};
export declare const DEFAULT_STYLE: CSSProperties;
export declare const HTML_TEMPLATE_TOOLTIP = "\n
\n
\n
[$1]
\n\n
\n\n
[$2]
\n
\n\n
\n
[$3]
\n\n [$4]\n\n
\n\n
\n
\n
";
export declare const DEFAULT_SERIES_TOTAL: HeatmapSeriesOption;
export declare const DEFAULT_SERIES_VALUE: HeatmapSeriesOption;
export declare const DEFAULT_SERIES_BREAKDOWN_VALUE: HeatmapSeriesOption;
export declare const DEFAULT_X_AXIS: XAXisOption;
export declare const DEFAULT_GRID: GridOption;
export declare const DEFAULT_Y_AXIS: YAXisOption;
export declare const DEFAULT_SERIES_BY_TYPE: {
readonly 1: HeatmapSeriesOption;
readonly 2: HeatmapSeriesOption;
readonly 3: HeatmapSeriesOption;
};
export declare const BASE_VISUAL_HEATMAP: {
show: boolean;
};
export declare const TOTAL_VISUAL_HEATMAP: {
inRange: {
color: string;
};
show: boolean;
};
export declare const VISUAL_DIM_BY_METRIC_TYPE: Record;