import Plugin from '..';
import type { ExecutionModel, FlowNodeModel } from '../types';
export type CustomFunction = (this: {
    execution: ExecutionModel;
    node?: FlowNodeModel;
}) => any;
export default function ({ functions }: Plugin, more?: {
    [key: string]: CustomFunction;
}): void;
