import { ExpressionNode, LOGIC_TYPE } from '../LogicItem';
import { BuiltInFuncParam } from './BuiltInFuncParam';
/**
 * 内置函数
 * @TODO: 当前类目前主要用于生成文档
 */
export declare class BuiltInFunction extends ExpressionNode {
    /**
     * 逻辑节点类型
     */
    readonly type: LOGIC_TYPE;
    /**
     * 调用名称
     */
    readonly calleeCode: string;
    /**
     * 跳转页面参数
     */
    readonly params: Array<BuiltInFuncParam>;
    /**
     * 生成 JS 脚本
     */
    toScript(): string;
}
