/// import { CustomStyleMap } from './EditorProviderContext'; export interface EditorProviderProps { customStyleMaps: CustomStyleMap[]; children: any; } declare const EditorProvider: ({ customStyleMaps, children, }: EditorProviderProps) => JSX.Element; export default EditorProvider;