/**
 * chartLog 图表日志
 *
 * @param {string} name 图表名称
 * @param {string} logType 单次日志类型
 * */
export default function chartLog(name: string, logType: string, logInfo?: any): void;
export declare function getLog(): {
    [chartName: string]: {
        init: number;
        rulesInfo: any;
        configInfo: any;
        renderTimeArray: any;
    };
};
export declare function themeLog(name: string): void;
/**
 * 打点控制函数
 *
 * @param {bool} enable 是否开启打点
 * */
export declare function track(enable: boolean): void;
/**
 * test控制函数
 *
 * @param {bool} enable 是否开启打点
 * */
export declare function test(enable: boolean): void;
export declare function warn(component: string, info: string, ...other: any[]): void;
