import React from 'react'; import './FunctionBodyEditor.less'; export interface FunctionBodyEditorProps extends Omit, 'onChange'> { argsTip?: string; async?: boolean; value?: string; onChange?: (value: string) => void; height?: number; } declare const FunctionBodyEditor: (props: FunctionBodyEditorProps) => JSX.Element; export default FunctionBodyEditor;