import React from "react"; import { ITextEditorProps } from "./CodeEditor/CodeEditor"; import "./style/index.less"; export type { FunctionType, CommonPlaceholderTheme, CompletionsType, ScriptEditorRef, PlaceholderThemesType, HintPathType, } from "./CodeEditor/interface"; interface IEditorProps extends ITextEditorProps { actionBoxHeight?: string; showHeader?: boolean; withSelect?: boolean; } declare const _default: React.ForwardRefExoticComponent>; export default _default;