/** * Web/Electron device info utilities * * Platform-specific implementation for web browsers and Electron apps. * Uses browser APIs instead of React Native Platform. */ /** * Generate a UUID v4 */ export declare function generateUUID(): string; /** * Check if running on a simulator/emulator * Always returns false for web/Electron */ export declare function isSimulator(): boolean; /** * Get basic device metadata for web/Electron */ export declare function getDeviceMetadata(): Record; /** * Get a default device name suggestion based on platform */ export declare function getDefaultDeviceName(): string; //# sourceMappingURL=device-info.web.d.ts.map