import type { SimplifiedUserAgentInfoBrowser } from "../types/ua/simplifiedUserAgentInfoBrowser"; /** * Extracts browser information from a User-Agent string * * @param ua - The User-Agent string to analyze * @returns The detected browser type ("edge", "chrome", "firefox", "safari", "ie", or "other") * * @example * ```ts * const browser = extractBrowserFromUserAgent(navigator.userAgent); * // browser: "chrome" * ``` */ export declare const extractBrowserFromUserAgent: (ua: string) => SimplifiedUserAgentInfoBrowser;