/** * @author: yanxianliang * @date: 2025-07-22 13:37 * @modified:2025/7/22 13:37 by yanxianliang * @desc: JSON editor * * Copyright (c) 2025 by yanxianliang, All Rights Reserved. */ import { EditorProps } from "./types"; export declare const JsonEditor: ({ value, height, placeholder, readOnly, onChange }: EditorProps) => import("react/jsx-runtime").JSX.Element;