import { Params } from '../../core/adaptor'; import { GaugeOptions } from './types'; /** * 统计指标文档 * @param params */ declare function statistic(params: Params, updated?: boolean): Params; /** * 对外暴露的 adaptor */ export { statistic }; /** * 图适配器 * @param chart * @param options */ export declare function adaptor(params: Params): Params;