/** * WorkflowDialogs Component * * Renders workflow-related dialogs (sync, backup, download, batch operations). * Composed of individual dialog components from ./dialogs/ directory. * * Pre-v2.11.6 this took a 23-field prop seam. All that state already lives * in the v2.10/v2.11 context layer — WorkflowContext owns sync/backup/ * download/batch state + handlers, OverlayContext owns showBatchMenu, * PluginContext owns selectedPluginObjects. This component now consumes * those contexts directly, eliminating the wide prop seam. * * @since v1.0.0 * @refactored v1.43.2 - Decomposed into individual dialog components * @refactored v2.11.6 - Context consumption replaces 23-field prop seam */ import type React from 'react'; /** * Renders workflow dialogs if any are active, returns null otherwise. * * Takes no props — all state and handlers come from WorkflowContext, * OverlayContext, and PluginContext. Callers that need to decide whether * to render this at all should check the same conditions at their level * (AppViewRouter does this via `shouldShowWorkflowDialog`). */ export declare function WorkflowDialogs(): React.ReactElement | null; //# sourceMappingURL=WorkflowDialogs.d.ts.map