export declare const EVENT_KEY = "AWESOME_CHART"; export declare const chartLifeCycles: Set<"draw" | "destroy" | "rebuildScale">; export declare const tooltipEvents: Set<"mouseover" | "mouseout" | "mousemove">; /** * Dependant layer means the layer that create scale itself. */ export declare const dependantLayers: Set; export declare const scaleTypes: Set<"scaleX" | "scaleY" | "scaleYR" | "scaleAngle" | "scaleRadius" | "scaleColor">; export declare const animationLifeCycles: Set<"destroy" | "init" | "play" | "start" | "process" | "end">; export declare const layerLifeCycles: Set<"draw" | "destroy" | "setData" | "setScale" | "setStyle" | "update" | "drawBasic" | "playAnimation">; export declare const commonEvents: Set<"mouseover" | "mouseout" | "mousemove" | "click" | "mouseup" | "mousedown">;