import { AfterViewInit, EventEmitter, OnInit } from '@angular/core'; import { IFormItemsControls } from '../../../../interface/form-structure'; import { IFiles } from '../../ViewItems/viewfiles/viewfiles.component'; import { FormItemComponentInterface } from '../../../../interface/component'; import { IHttpSetting } from '../../../../interface/dataset-params'; import { HttpFormDataService } from '../../../../services/services'; export declare class CardChartComponent implements OnInit, AfterViewInit, FormItemComponentInterface { private httpService; prop: IFormItemsControls; isFilter: boolean; keyOnEnter: EventEmitter; datasetId: number; formId: number; recordId: 0; fileList: IFiles[]; settings: { innerPadding: number; emptyColor: string; textColor: string; bandColor: string; cardColor: string; colorScheme: any[]; view: number[]; animations: boolean; fitInContainer: boolean; }; colorScheme: { domain: string[]; }; view: number[]; uid: string; data: any[]; setting: IHttpSetting; locale: string; footerInfo: string; constructor(httpService: HttpFormDataService); loadKPI(noCache?: boolean): void; ngAfterViewInit(): void; ngOnInit(): void; }