type RteEditorWithFullscreen = { editorRef?: { current?: HTMLElement | null; }; requestProps?: { isPlugin?: boolean; }; isEntryInModal?: boolean; }; /** * Exits RTE fullscreen before actions that open entry-in-modal UI (e.g. “Open in overlay”). * Prefers clicking `.scrte-fullscreen-row-button` (same as the row toggle in the Editor). */ export declare const exitRteFullScreenIfActive: (editor?: RteEditorWithFullscreen | null) => void; export {};