// Type definitions for chromedriver 81.0 // Project: https://github.com/giggio/node-chromedriver // Definitions by: Peter Safranek // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped /// import { ChildProcess } from 'child_process'; export const path: string; export const version: string; export function start(args: ReadonlyArray | null | undefined, returnPromise: true): Promise; export function start(args?: ReadonlyArray, returnPromise?: false): ChildProcess; export function stop(): void; export const defaultInstance: ChildProcess | undefined;