import { OnInit } from '@angular/core'; import { ChartComponent, ApexAxisChartSeries, ApexChart, ApexXAxis, ApexDataLabels, ApexTitleSubtitle, ApexStroke, ApexTooltip, ApexGrid, ApexAnnotations } from 'ng-apexcharts'; import { PluginsService } from "../plugins.service"; import { CardData, GraphData, InfoGrid, SocialMedia, StatsGrid } from "../plugins.model"; import { DialogService } from "primeng/dynamicdialog"; import * as i0 from "@angular/core"; export declare type ChartOptions = { series: ApexAxisChartSeries; annotations: ApexAnnotations; chart: ApexChart; xaxis: ApexXAxis; dataLabels: ApexDataLabels; grid: ApexGrid; labels: string[]; stroke: ApexStroke; title: ApexTitleSubtitle; tooltip: ApexTooltip; }; export declare class DashboardComponent implements OnInit { private pluginService; dialogService: DialogService; chart: ChartComponent; chartOptions: Partial; socialMedia: SocialMedia[]; midGridFirst: InfoGrid; midGridSecond: StatsGrid[]; CardInfo: CardData[]; ChartInfo: GraphData; dialogRef: any; constructor(pluginService: PluginsService, dialogService: DialogService); ngOnInit(): void; displayGraphics(): void; viewDialog(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }