import { HttpClient, MaybeContext, BuildRESTFunction } from '@wix/sdk-types'; import { InvokeEditorFunctionResponse, InvokeEditorFunctionApplicationErrors } from './index.typings.js'; export { EditorFunction, InvokeEditorFunctionRequest } from './index.typings.js'; declare function invokeEditorFunction$1(httpClient: HttpClient): InvokeEditorFunctionSignature; interface InvokeEditorFunctionSignature { /** * Invokes the specified Editor Function. Returns a NOT_FOUND error if editor function can't be found by the provided id. * @param - Id of the function requested to be invoked * @returns Invoke Function Response */ (functionId: string): Promise; } declare const invokeEditorFunction: MaybeContext & typeof invokeEditorFunction$1>; export { InvokeEditorFunctionApplicationErrors, InvokeEditorFunctionResponse, invokeEditorFunction };