/** * @author: yanxianliang * @date: 2025-07-21 10:10 * @modified:2025/7/21 10:10 by yanxianliang * @desc: 代码编辑器(行内模式) * * Copyright (c) 2025 by yanxianliang, All Rights Reserved. */ import { InlineCodeEditorProps } from "./types"; export declare const InlineCodeEditor: ({ height, value, onChange, readOnly }: InlineCodeEditorProps) => import("react/jsx-runtime").JSX.Element;