import { WebPlugin } from '@capacitor/core'; import type { BatteryInfo, DeviceId, DeviceInfo, DevicePlugin, GetLanguageCodeResult, LanguageTag } from './definitions'; declare global { interface Navigator { getBattery: any; oscpu: any; } interface Window { InstallTrigger?: any; ApplePaySession?: any; chrome?: any; } } export declare class DeviceWeb extends WebPlugin implements DevicePlugin { getId(): Promise; getInfo(): Promise; getBatteryInfo(): Promise; getLanguageCode(): Promise; getLanguageTag(): Promise; parseUa(ua: string): any; getUid(): string; uuid4(): string; }