import { type DataViewReader } from "./data-view-reader.js"; export interface GapPeripheralPrivacyFlag { /** *
Format: `boolean`
* | Key | Description | * | --- | ---------------------------------- | * | 0 | privacy is disabled in this device | * | 1 | privacy is enabled in this device | * */ flag: boolean; } /** @see {@link https://raw.githubusercontent.com/oesmith/gatt-xml/refs/heads/master/org.bluetooth.characteristic.gap.peripheral_privacy_flag.xml | Gap Peripheral Privacy Flag} */ export declare class GapPeripheralPrivacyFlagImpl implements GapPeripheralPrivacyFlag { static readonly UUID_PREFIX = 10754; static readonly TYPE_NAME = "org.bluetooth.characteristic.gap.peripheral_privacy_flag"; static readonly NAME = "Peripheral Privacy Flag"; /** Parse from a DataView into {@link GapPeripheralPrivacyFlag}. */ static fromDataView(dataView: DataView | DataViewReader, indexStart?: number | undefined): GapPeripheralPrivacyFlagImpl; readonly flag: boolean; constructor(gapPeripheralPrivacyFlag: GapPeripheralPrivacyFlag); } /** Parse from a DataView into {@link GapPeripheralPrivacyFlag}. */ export declare function gapPeripheralPrivacyFlagFromDataView(dataView: DataView | DataViewReader, indexStart?: number): GapPeripheralPrivacyFlag; //# sourceMappingURL=gap-peripheral-privacy-flag.d.ts.map