import { ElementRef, EventEmitter } from '@angular/core'; import * as sentio from '@asymmetrik/sentio'; /** * Wrapper for chart info */ export declare class ChartWrapper { chart: T; chartElement: any; chartReady: EventEmitter; /** * Creates the chart, binds it to the dom element. * This doesn't do any DOM manipulation yet. * @param el * @param chart */ constructor(el: ElementRef, chart: T, chartReady: EventEmitter); /** * Initializes the chart, creating its DOM structure */ initialize(): void; }