import { EventEmitter, OnInit } from '@angular/core'; import { TranslateService } from '@ngx-translate/core'; import { DxPieChartComponent } from 'devextreme-angular'; import { ReqHttpService } from '../../../services/req-http.service'; export declare class PieComponent implements OnInit { private _translateService; private reqHttp; constructor(_translateService: TranslateService, reqHttp: ReqHttpService); pie: DxPieChartComponent; private _dataSource; dataSource: any; argumentField: string; valueField: string; width: any; height: any; export: boolean; texts: boolean; indexData: string; onClick: string; onLegentClick: string; _onClick: EventEmitter<{}>; _onLegentClick: EventEmitter<{}>; _legendsOrientation: string; legendsOrientation: string; _type: string; type: string; _label: string; private privateLabel; label: string; _columns: any; columns: any; reqService(url?: string): void; pointClickHandler($event: any): void; legendClickHandler($event: any): void; toggleVisibility(item: any): void; customizeLabel(arg: any): string; ngOnInit(): void; ngAfterViewInit(): void; }