///
import { IBrowserFinder, IExecutable } from './index';
import { promises as fsPromises } from 'fs';
/**
* Finds the Chrome browser on Windows.
*/
export declare class WindowsChromeBrowserFinder implements IBrowserFinder {
private readonly env;
private readonly fs;
constructor(env: NodeJS.ProcessEnv, fs: typeof fsPromises);
findWhere(predicate: (exe: IExecutable) => boolean): Promise;
findAll(): Promise;
}