import type DevToolsDriver from '../devtoolsdriver';
/**
 * The Back command causes the browser to traverse one step backward
 * in the joint session history of the current top-level browsing context.
 * This is equivalent to pressing the back button in the browser chrome or calling `window.history.back`.
 *
 * @alias browser.back
 * @see https://w3c.github.io/webdriver/#dfn-back
 */
export default function back(this: DevToolsDriver): Promise<null>;
//# sourceMappingURL=back.d.ts.map