//#region src/utils/browserId.d.ts /** * @exports the browser id (i.e., 'IE 11' 'Chrome 90') * @see http://stackoverflow.com/questions/2400935/browser-detection-in-javascript */ declare const browserId: string; declare const browserName: string; declare const browserVersion: number | ""; declare const browserIsFirefox: "" | boolean; declare const browserIsEdgeBeforeChromium: "" | 0 | boolean; //#endregion export { browserId, browserIsEdgeBeforeChromium, browserIsFirefox, browserName, browserVersion };