import { ExportDashboard } from '../models/common.model'; import { LuzmoDashboard } from '../models/dashboard.model'; export type DashboardExportType = 'pdf' | 'png'; export type ExportType = DashboardExportType; export declare const exportDashboard: (dashboardComponent: T, iframe: HTMLIFrameElement, format?: DashboardExportType) => Promise;