export declare abstract class ChartBase { ctx: import("@suntech-innovation/option").Option; canvasElem: import("@suntech-innovation/option").Option; get sizes(): { width: number; height: number; }; abstract get nativeElement(): HTMLElement; protected clearHolst({ width, height }?: { width: number; height: number; }): void; abstract render(args?: any): void; }