import { type DataViewReader } from "./data-view-reader.js"; /**

The Supported Power Range characteristic is used to send the supported power range as well as the minimum power increment supported by the Server.

*/ export interface SupportedPowerRange { /** *

Format: `sint16`

*

Unit: `org.bluetooth.unit.power.watt`

*

Watt with a resolution of 1

*/ maximumPower: number; /** *

Format: `uint16`

*

Unit: `org.bluetooth.unit.power.watt`

*

Watt with a resolution of 1

*/ minimumIncrement: number; /** *

Format: `sint16`

*

Unit: `org.bluetooth.unit.power.watt`

*

Watt with a resolution of 1

*/ minimumPower: number; } /** @see {@link https://raw.githubusercontent.com/oesmith/gatt-xml/refs/heads/master/org.bluetooth.characteristic.supported_power_range.xml | Supported Power Range} */ export declare class SupportedPowerRangeImpl implements SupportedPowerRange { static readonly UUID_PREFIX = 10968; static readonly TYPE_NAME = "org.bluetooth.characteristic.supported_power_range"; static readonly NAME = "Supported Power Range"; /** Parse from a DataView into {@link SupportedPowerRange}. */ static fromDataView(dataView: DataView | DataViewReader, indexStart?: number | undefined): SupportedPowerRangeImpl; readonly maximumPower: number; readonly minimumIncrement: number; readonly minimumPower: number; constructor(supportedPowerRange: SupportedPowerRange); } /** Parse from a DataView into {@link SupportedPowerRange}. */ export declare function supportedPowerRangeFromDataView(dataView: DataView | DataViewReader, indexStart?: number): SupportedPowerRange; //# sourceMappingURL=supported-power-range.d.ts.map