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