import { BrowserInfo, BrowserName } from './browser-info';
export declare const findVersion: (browserPath: string) => Promise<string>;
export declare const findBrowserRegistries: (mainRegistryPath: string) => Promise<string[]>;
export declare const getInstallationPath: (browserRegistry: string) => Promise<BrowserInfo | null>;
export declare const detectBrowser: (browserRegistry: string) => Promise<{
    path: string;
    version: string;
    name: string;
} | null>;
export declare const detectBrowsers: (browserRegistries: string[]) => Promise<{
    path: string;
    version: string;
    name: string;
}[]>;
export default function detectWinInstalledBrowsers(browserNames: BrowserName[]): Promise<{
    path: string;
    version: string;
    name: string;
}[]>;
