import UAParser from 'ua-parser-js'; /** * --- * category: utilities/utils * --- * A utility module using the [ua-parser-js](https://www.npmjs.com/package/ua-parser-js) browser * detection library. * * @module getBrowser */ declare const getBrowser: () => UAParser.IBrowser; declare const isSafari: () => boolean; declare const isEdge: () => boolean; declare const isIE: () => boolean; declare const isChromium: () => boolean; declare const isFirefox: () => boolean; declare const isAndroidOrIOS: () => boolean; declare const isMac: () => boolean; export { getBrowser, isSafari, isEdge, isIE, isFirefox, isChromium, isAndroidOrIOS, isMac }; //# sourceMappingURL=getBrowser.d.ts.map