import type { IInitVChartArcoThemeOption } from '@visactor/vchart-arco-theme'; import type { IThemeQueryOption } from '@visactor/vchart-theme-utils'; export interface IInitVChartVeOThemeOption extends IInitVChartArcoThemeOption { colorScheme?: ColorSchemeType | string; } export interface IVeOThemeQueryOption extends IThemeQueryOption { colorScheme?: ColorSchemeType | string; } export declare enum ColorSchemeType { default = "default", finance = "finance", government = "government", consumer = "consumer", automobile = "automobile", culturalTourism = "culturalTourism", medical = "medical", newEnergy = "newEnergy" }