import { default as React, ReactNode } from 'react'; import { DocumentStyling, ThemeKey } from '../types'; interface EditorContextType { documentStyling?: DocumentStyling; theme: ThemeKey; isFocusMode: boolean; } export declare const EditorContext: React.Context; export declare const useEditorContext: () => EditorContextType; export declare const EditorProvider: React.FC<{ children: ReactNode; documentStyling?: DocumentStyling; theme?: ThemeKey; isFocusMode?: boolean; }>; export {};