import type { XCUITestDriver } from '../driver';
import type { BatteryInfo } from './types';
/**
 * Reads the battery information from the device under test.
 *
 * This endpoint only returns reliable result on real devices.
 *
 * @returns Battery information with advanced details
 */
export declare function mobileGetBatteryInfo(this: XCUITestDriver): Promise<BatteryInfo & {
    advanced: Record<string, any>;
}>;
//# sourceMappingURL=battery.d.ts.map