/** * Returns the version string of the current browser, or `''` outside a browser environment. * * @example * getBrowserVersion() // => '120.0.6099.109' * @since 1.0.0 */ declare const getBrowserVersion: () => string; export default getBrowserVersion;