import React from 'react'; import type { TabItem } from '@splunk/dashboard-types'; import { type returnFocus } from '../Modal'; interface ExportDashboardModalContentProps { open: boolean; fileType: 'pdf' | 'png'; fileName: string; layoutIds: string[]; renderTime: number; expandAdvancedSection?: boolean; modalStep: number; isTabbedDashboard: boolean; tabs: TabItem[]; isDownloadingTabs: boolean; searchProgressInterval?: number; onFileNameChange: React.Dispatch>; onFileTypeChange: React.Dispatch>; onLayoutIdsChange: React.Dispatch>; onRenderTimeChange: React.Dispatch>; onProgress: React.Dispatch>; onDownloadDashboard: () => Promise; onRequestClose: () => void; returnFocus: returnFocus; } export declare const ExportModalContent: ({ open, fileType, fileName, layoutIds, renderTime, returnFocus, expandAdvancedSection, modalStep, isTabbedDashboard, tabs, isDownloadingTabs, searchProgressInterval, onRequestClose, onFileNameChange, onFileTypeChange, onLayoutIdsChange, onRenderTimeChange, onDownloadDashboard, onProgress, }: ExportDashboardModalContentProps) => React.JSX.Element; export {}; //# sourceMappingURL=ExportModalContent.d.ts.map