/// import { IInputItem } from '../../services/viz-conf'; import { ChartViz } from '../../services/chart/chart-viz-service'; import './chart.scss'; export interface IScope extends angular.IScope { vm: any; state: any; statePrefix: string; $state: any; data: IInputItem[]; fields: string[]; maximizable: any; viz: ChartViz; events: any; } declare const _default: () => { restrict: string; template: any; scope: { data: string; fields: string; bvOptions: string; statePrefix: string; $state: string; }; link: { pre(scope: IScope, element: any): void; }; }; export default _default;