import { type DataViewReader } from "./data-view-reader.js"; /**
The Supported Resistance Level Range characteristic is used to send the supported resistance level range as well as the minimum resistance increment supported by the Server.
*/ export interface SupportedResistanceLevelRange { /** *Format: `sint16`
*Unit: `org.bluetooth.unit.unitless`
*Unitless with a resolution of 0.1
*/ maximumResistanceLevel: number; /** *Format: `uint16`
*Unit: `org.bluetooth.unit.unitless`
*Unitless with a resolution of 0.1
*/ minimumIncrement: number; /** *Format: `sint16`
*Unit: `org.bluetooth.unit.unitless`
*Unitless with a resolution of 0.1
*/ minimumResistanceLevel: number; } /** @see {@link https://raw.githubusercontent.com/oesmith/gatt-xml/refs/heads/master/org.bluetooth.characteristic.supported_resistance_level_range.xml | Supported Resistance Level Range} */ export declare class SupportedResistanceLevelRangeImpl implements SupportedResistanceLevelRange { static readonly UUID_PREFIX = 10966; static readonly TYPE_NAME = "org.bluetooth.characteristic.supported_resistance_level_range"; static readonly NAME = "Supported Resistance Level Range"; /** Parse from a DataView into {@link SupportedResistanceLevelRange}. */ static fromDataView(dataView: DataView | DataViewReader, indexStart?: number | undefined): SupportedResistanceLevelRangeImpl; readonly maximumResistanceLevel: number; readonly minimumIncrement: number; readonly minimumResistanceLevel: number; constructor(supportedResistanceLevelRange: SupportedResistanceLevelRange); } /** Parse from a DataView into {@link SupportedResistanceLevelRange}. */ export declare function supportedResistanceLevelRangeFromDataView(dataView: DataView | DataViewReader, indexStart?: number): SupportedResistanceLevelRange; //# sourceMappingURL=supported-resistance-level-range.d.ts.map