import { Context } from "../context"; export interface ICallFunctionOptions { name: string; destination?: string; calling?: (INPUT: any) => any; exporting?: any; importing?: any; tables?: any; changing?: any; exceptions?: any; } export declare class CallFunction { private readonly context; constructor(context: Context); callFunction(options: ICallFunctionOptions): Promise; }