import { Mix } from './plots/mix'; /** 实验室图表所处的阶段 */ export declare enum Stage { DEV = "DEV", BETA = "BETA", STABLE = "STABLE" } /** * 不同阶段打印一些消息给开发者 * @param stage */ export declare function notice(stage: Stage, plotType: string): void; /** * 实验室图表,实验室中的图表分成不同的阶段。 */ export declare class Lab { static get MultiView(): typeof Mix; }