import Vue from 'vue'; import { BaseEcharts } from './echarts'; export interface IntallOptions { config: { [key: string]: any; } } export const version: string export function install(vue: typeof Vue, options: IntallOptions): void export class BarEchart extends BaseEcharts {} export class LineEchart extends BaseEcharts {} export class PieEchart extends BaseEcharts {}