/**
 * Get the version of the current browser
 * @note This method detects the browser version by the navigator's user agent (`navigator.userAgent`)
 * @returns {number} The browser version, it will return `0` if it fails to find it
 */
export declare function getBrowserVersion(): number;
