import { Quality } from './index';
import { DarwinFinderBase } from './darwinFinderBase';
/**
 * Finds the Chrome browser on OS X.
 */
export declare class DarwinChromeBrowserFinder extends DarwinFinderBase {
    /**
     * @override
     */
    protected wellKnownPaths: {
        path: string;
        quality: Quality;
    }[];
    protected findAllInner(): Promise<import("./index").IExecutable[]>;
    getPreferredPath(): string | undefined;
}
