import React from "react"; import { ITextEditorProps } from "./CodeEditor"; import { IParseFunctionResult, IWithSelectCodemirrorRef } from "./interface"; interface IWithSelectCodemirrorProps extends ITextEditorProps { actionBoxHeight?: string; showHeader?: boolean; showTool?: boolean; renderHeader?: React.ReactNode | string; clickDebug?: (result: IParseFunctionResult) => void; } declare const _default: React.ForwardRefExoticComponent>; export default _default;