/** 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 device is a mac. * @experimental Avoid using this as this is not reliable. */ export declare const isMacOS: 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; /** * We just check for the blink engine. */ export declare const isChromium: boolean; /** Whether the application is being rendered in a Next.js environment. */ export declare const isNextjs: () => boolean; //# sourceMappingURL=platform.d.ts.map