declare namespace WebdriverIO { interface Element { /** * Focus on the element. * @monkeypatch */ focus(): Promise; /** * Blur the element. * @monkeypatch */ blur(): Promise; } }