import { SimpleResult } from "./simple-result"; export declare class SimpleFunctions { functions: Map>; execute(key: string, data?: any): Promise; register(functionName: string, func: Function): string; contains(key: string): boolean; } declare class SimpleFunctionExecutionResult extends SimpleResult { static readonly keyHasResults = "has_results"; hasResults: boolean; results: { [key: string]: any; }; toJson(): { [key: string]: any; }; } export {};