/// <reference types="q" />import*asqfrom'q';import{WebDriver}from'selenium-webdriver';import{Config}from'../config';import{DriverProvider}from'./driverProvider';exportdeclareclassMockExecutor{execute(command:any):any;}exportdeclareclassMockextendsDriverProvider{constructor(config?:Config);/** * An execute function that returns a promise with a test value. */execute():q.Promise<any>;/** * Configure and launch (if applicable) the object's environment. * @public * @return {q.promise} A promise which will resolve immediately. */protectedsetupDriverEnv():q.Promise<any>;/** * Create a new driver. * * @public * @override * @return webdriver instance */getNewDriver():WebDriver;}