import * as echarts from "echarts"; export interface IUseChart { basicOption: any; useEvents: any[]; customRenderData: (option: any) => void; emits: any; } export declare const useChart: ({ basicOption, useEvents, customRenderData, emits, }: IUseChart) => { id: string; status: import("vue").Ref; chart: import("vue").ShallowRef; setOption: (optionParams: any, type?: any) => void; renderChart: (option: echarts.EChartsOption) => void; renderData: (option: any) => void; };