import { SimpleEventExecutionResult } from "./simple-event-execution-result"; export interface ISimpleEventExecuteCallbackParams { key: string; args: any | undefined; functionResults: any; } export declare class SimpleEvents { events: any; executeCallback: Function; execute(key: string, args?: any | undefined): Promise; register(eventName: string, fun: Function): string; }