import { EditorPluginClass } from '../utils/plugin/EditorPlugin'; export interface FunctionLibProps { id: string; name: string; children: FunctionLibProps[]; [key: string]: any; } export interface FunctionLibFormatProps extends FunctionLibProps { label: string; title: string; value: string; disabled: boolean; children: FunctionLibFormatProps[]; } export declare const useFunctionLib: (editorPluginInst: EditorPluginClass) => { funcLibList: any; funcFlatLibList: any; getFuncLibList: () => Promise; funcLibs: any; };