import { FieldControl } from '../interfaces'; import 'brace/mode/json'; import 'brace/theme/github'; import 'brace/theme/terminal'; export declare type JSONEditorConfiguration = { theme?: string; }; export declare const createJSONEditor: (cfg: JSONEditorConfiguration) => FieldControl;