/** * Auto-Update View * * Shows live progress during auto-update and a summary when complete. * Takes over the Updates tab while active. * * @since v2.4.25 */ import type React from 'react'; import type { AutoUpdateProgress, AutoUpdateSummary } from '../../workflows/auto-update.js'; import type { Theme } from '../themes/types.js'; export type AutoUpdateState = 'idle' | 'running' | 'complete'; export interface AutoUpdateViewProps { state: AutoUpdateState; progress: AutoUpdateProgress | null; summary: AutoUpdateSummary | null; onDismiss: () => void; onExportManual?: () => void; maxHeight: number; theme: Theme; } export declare function AutoUpdateView({ state, progress, summary, onDismiss, onExportManual, maxHeight, theme }: AutoUpdateViewProps): React.ReactElement; //# sourceMappingURL=AutoUpdateView.d.ts.map