import { Api } from 'nightwatch'; interface IOptions { env?: string; configFile?: string; silent?: boolean; } export declare function deleteRunner(): void; export declare function startWebDriver(options: IOptions): Promise; export declare function stopWebDriver(): Promise; export declare function createSession(options: IOptions): Promise; export declare function closeSession(): Promise; export declare function runQueue(): Promise; export declare function getNewScreenshots(): string[]; export {};