/** * Internal dependencies */ import { EmailEditorSettings, EmailTheme, EmailEditorUrls } from './types'; /** * Extract editor configuration from the global window object for backward compatibility. * This function is used by the initializeEditor function to maintain backward compatibility. */ export declare function getEditorConfigFromWindow(): { editorSettings: EmailEditorSettings; theme: EmailTheme; urls: EmailEditorUrls; userEmail: string; globalStylesPostId: number; };