/** Whether the application is being rendered in the browser. */ export declare const isBrowser: () => boolean; /** Whether the current browser is Microsoft Edge. */ export declare const isEdge: () => boolean; /** Whether the current rendering engine is Microsoft Trident. */ export declare const isTrident: () => boolean; /** Whether the current rendering engine is Blink. */ export declare const isBlink: () => boolean; /** Whether the current rendering engine is WebKit. */ export declare const isWebkit: () => boolean; /** Whether the current platform is Apple iOS. */ export declare const isIOS: () => boolean; /** Whether the current browser is Firefox. */ export declare const isFirefox: () => boolean; /** Whether the current platform is Android. */ export declare const isAndroid: () => boolean; /** Whether the current browser is Safari. */ export declare const isSafari: () => boolean; /** Whether the application is being rendered in a Next.js environment. */ export declare const isNextjs: () => boolean; /** * Note: `userAgentData` is still experimental. If possible, avoid to use it. * https://developer.mozilla.org/en-US/docs/Web/API/Navigator/userAgentData */ export declare const isChromium: () => boolean; //# sourceMappingURL=platform.d.ts.map