import React from 'react'; export interface CustomStyleMap { group: string; exclusive?: boolean; styles: any; } declare const EditorThemeContext: React.Context<{ customStyleMaps: CustomStyleMap[]; getCustomStyleMapOfKey: (key: string) => any; getCustomStyleMap: (group: string) => any; }>; export default EditorThemeContext;