export interface Battery { level: number; charging: boolean; } export declare function getBattery(): Promise;