import type { wdi5Control, clientSide_ui5Response } from "../types/wdi5.types.js"; /** * Execute method on the ui5 control through the browser. If element "is stale" we first retrieve it * from the browser again * @param {Object} webElement representation of a webElement in node depending on the protocol * @param {String} methodName function name to be called on the ui5 control * @param {WebdriverIO.Browser} browserInstance * @param {Object} args proxied arguments to UI5 control method at runtime * @param {WDI5Control} wdi5Control wdi5 representation of the ui5 control */ declare function clientSide_executeControlMethod(webElement: WebdriverIO.Element, methodName: string, browserInstance: WebdriverIO.Browser, args: unknown[], wdi5Control: wdi5Control): Promise; export { clientSide_executeControlMethod }; //# sourceMappingURL=executeControlMethod.d.ts.map