import { BurdenoffNativePlatform } from './types'; export declare function getPlatform(): BurdenoffNativePlatform; export declare function isNative(): boolean; export declare function isIOS(): boolean; export declare function isAndroid(): boolean; export declare function isWeb(): boolean; /** Running inside an Electron desktop shell. */ export declare function isElectron(): boolean; /** Running as an installed / standalone PWA (added to home screen / installed). */ export declare function isStandalonePWA(): boolean; /** * True when running as an INSTALLED app — Capacitor native, Electron desktop, or * an installed/standalone PWA — rather than a regular browser tab. Use this to * hide web-only chrome (e.g. the cross-product switcher) outside the web app. */ export declare function isInstalledApp(): boolean; /** True only in a regular web browser tab (not installed/native/desktop). */ export declare function isWebBrowser(): boolean; //# sourceMappingURL=platform.d.ts.map