import { type ReactElement, type ReactNode } from "react"; /** * Provides AutomationsContext to its children, built from dashboard Redux state. * Wraps the scheduled-email dialog subtree (both the create/edit and management dialogs reach * AutomationsContext through this provider). * * @internal */ export declare function ScheduledEmailAutomationsProvider({ children }: { children: ReactNode; }): ReactElement; /** * Connector component that reads from the dashboard Redux store and wires up * the scheduled-email dialog tree (create/edit and management) via context providers. * * This is the primary bridge between dashboard store state and the scheduled-email * dialog tree. The dialog still reads the store directly at this point — * contexts are provided but not yet consumed. Store reads migrate off the dialog * in subsequent Phase 2 tasks (A2/A3). * * AutomationsContext is provided by ScheduledEmailAutomationsProvider, which wraps this * connector (see ScheduledEmailAutomationsProvider in DashboardHeader). * * @internal */ export declare function ScheduledEmailConnector(): ReactElement | null; //# sourceMappingURL=ScheduledEmailConnector.d.ts.map