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

Format: `uint8`

*

Unit: `org.bluetooth.unit.unitless`

*

The factor has a fixed-point representation, where the actual factor is (attribute value * 0.1)

*/ gustFactor: number; } /** @see {@link https://raw.githubusercontent.com/oesmith/gatt-xml/refs/heads/master/org.bluetooth.characteristic.gust_factor.xml | Gust Factor} */ export declare class GustFactorImpl implements GustFactor { static readonly UUID_PREFIX = 10868; static readonly TYPE_NAME = "org.bluetooth.characteristic.gust_factor"; static readonly NAME = "Gust Factor"; /** Parse from a DataView into {@link GustFactor}. */ static fromDataView(dataView: DataView | DataViewReader, indexStart?: number | undefined): GustFactorImpl; readonly gustFactor: number; constructor(gustFactor: GustFactor); } /** Parse from a DataView into {@link GustFactor}. */ export declare function gustFactorFromDataView(dataView: DataView | DataViewReader, indexStart?: number): GustFactor; //# sourceMappingURL=gust-factor.d.ts.map