import { ECOption } from '../TreemapChart'; import { TData } from './types'; declare const COLORS_DEFAULT: string[]; declare const TEST_DATA: TData; declare const VERSION_CONFIGS: { width: string; left: string; }[]; declare const SERIES_DEFAULT: { type: string; breadcrumb: { show: boolean; }; width: string; height: string; itemStyle: { borderColor: string; }; upperLabel: { fontFamily: string; color: string; }; label: { show: boolean; fontFamily: string; color: string; fontSize: number; position: string; padding: number[]; }; roam: boolean; nodeClick: boolean; levels: ({ itemStyle: { borderColor: string; borderWidth: number; gapWidth: number; borderColorSaturation?: undefined; }; upperLabel: { show: boolean; fontSize: number; height: number; padding?: undefined; position?: undefined; }; colorAlpha?: undefined; emphasis?: undefined; } | { colorAlpha: number[]; itemStyle: { borderColorSaturation: number; gapWidth: number; borderColor?: undefined; borderWidth?: undefined; }; upperLabel: { padding: number[]; position: string; height: number; fontSize: number; show: boolean; }; emphasis: { upperLabel: { position: string; }; }; })[]; tooltip: { formatter: () => string; }; }; declare const OPTION_DEFAULT: ECOption; export { TEST_DATA, SERIES_DEFAULT, COLORS_DEFAULT, VERSION_CONFIGS, OPTION_DEFAULT };