import { InjectionKey } from 'vue'; export interface DkRadarEChart { initViewer: (chartDom: HTMLElement) => void; } /** * 可以在数据准备阶段new,然后在mounted阶段 */ export declare class RadarEChart implements DkRadarEChart { mold: string; options: any; indicator: any; valDatas: object[]; globOptions: { booTooltip: boolean; title: string; unit: string; shape: string; radius: string; center: string[]; lineColor: { R: number; G: number; B: number; }; }; constructor(mold?: string, colorType?: string, indicator?: any, valDatas?: object[], dkOptions?: any); initViewer(chartDom: HTMLElement): void; private initOptions; } export declare const radarEChartKey: InjectionKey;