import { type DataViewReader } from "./data-view-reader.js"; /**
The current charge level of a battery. 100% represents fully charged while 0% represents fully discharged.
*/ export interface BatteryLevel { /** *Format: `uint8`
*Unit: `org.bluetooth.unit.percentage`
*Minimum: 0
*Maximum: 100
*Reserved: 101 to 255
*/ level: number; } /** @see {@link https://raw.githubusercontent.com/oesmith/gatt-xml/refs/heads/master/org.bluetooth.characteristic.battery_level.xml | Battery Level} */ export declare class BatteryLevelImpl implements BatteryLevel { static readonly UUID_PREFIX = 10777; static readonly TYPE_NAME = "org.bluetooth.characteristic.battery_level"; static readonly NAME = "Battery Level"; /** Parse from a DataView into {@link BatteryLevel}. */ static fromDataView(dataView: DataView | DataViewReader, indexStart?: number | undefined): BatteryLevelImpl; readonly level: number; constructor(batteryLevel: BatteryLevel); } /** Parse from a DataView into {@link BatteryLevel}. */ export declare function batteryLevelFromDataView(dataView: DataView | DataViewReader, indexStart?: number): BatteryLevel; //# sourceMappingURL=battery-level.d.ts.map