import React from "react"; import { FunctionType } from "../CodeEditor/interface"; interface IActionFuncProps { funcList: FunctionType[]; callback: (funcData: any, type: string) => void; handleHover: (funcData: any) => void; handleMouseOver: (e: any, container: any) => void; handleMouseOut: (e: any) => void; callbackSelect: (funcData: any) => void; } declare function ActionFunction(props: IActionFuncProps): React.JSX.Element; export default ActionFunction;