import type { SimplifiedUserAgentInfo } from "../types/ua/simplifiedUserAgentInfo"; /** * Parse a User-Agent string to extract browser, device, and OS information * * @param userAgent - The complete User-Agent string to analyze * @returns An object containing the detected browser, device, and operating system * * @example * ```ts * const info = parseUserAgent(navigator.userAgent); * // info: { * // browser: "chrome", * // device: "desktop", * // os: "macos" * // } * ``` */ export declare const parseUserAgent: (userAgent: string) => SimplifiedUserAgentInfo;