/** * Invokes the function and returns the parsed body * @param {[type]} functionName [description] * @param {[type]} body [description] * @return {[type]} [description] */ export declare function invoke(functionName: string, body: object | string): Promise; /** * Invokes the event * @param {[type]} functionName [description] * @param {[type]} body [description] * @return {[type]} [description] */ export declare function invokeEvent(functionName: string, body: object | string): Promise;