import { View } from "./types";
/**
 * 图例变灰设置。
 *
 * @param {this} ctx 组件实例 this 指针
 * @param {View} chart 图表对象，或者是view对象
 * @param {string} [dataKey] 原始数据挂载的key，用于动态获取原始数据
 *
 * */
export default function <T>(ctx: T, chart: View, dataKey?: string): void;
