import { BrowserInfo, BrowserName } from './browser-info'; export declare const findVersion: (browserPath: string) => Promise; export declare const findBrowserRegistries: (mainRegistryPath: string) => Promise; export declare const getInstallationPath: (browserRegistry: string) => Promise; 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; }[]>;