import { FC, HTMLAttributes } from 'react'; import 'brace'; import 'brace/mode/json'; import 'brace/theme/github'; export interface Props extends HTMLAttributes { value: any; onChange?: any; style?: any; } export declare const JsonEditor: FC;