import { OnInit, ElementRef } from '@angular/core'; import { DatePipe } from '@angular/common'; import { _HttpClient } from '@delon/theme'; import { DialogService } from 'icc-common-lib'; export declare class TiktokDataTrendComponent implements OnInit { private el; private datePipe; private http; private dialogService; constructor(el: ElementRef, datePipe: DatePipe, http: _HttpClient, dialogService: DialogService); static NAME: string; channelId: number; searchOptions: { indexType: number; start: Date; end: Date; }; postParams: { channelId: number; indexType: number; start: string; end: string; }; dataSource: any; chartIns: any; displayDateList: Array; displayCountList: Array; dataIndicatorList: { name: string; targetType: number; isSelected: boolean; }[]; selectedDataIndicatorTag: string; selectedTargetType: number; isRangeError: boolean; validateRange: { errorKey: string; errorList: { key: string; value: string; }[]; }; ngOnInit(): void; ngOnDestroy(): void; handleClickDITag(e: any): void; handleDateChange(): void; search(): void; resizeCharts: () => void; disabledDate: (current: Date) => boolean; selectDate(): boolean; formatData(data: any): void; formatDisplayDate(date: any): string; createLineChart(chartCls: any): void; }