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

Format: `utf8s`

*/ name: string; } /** @see {@link https://raw.githubusercontent.com/oesmith/gatt-xml/refs/heads/master/org.bluetooth.characteristic.gap.device_name.xml | Gap Device Name} */ export declare class GapDeviceNameImpl implements GapDeviceName { static readonly UUID_PREFIX = 10752; static readonly TYPE_NAME = "org.bluetooth.characteristic.gap.device_name"; static readonly NAME = "Device Name"; /** Parse from a DataView into {@link GapDeviceName}. */ static fromDataView(dataView: DataView | DataViewReader, indexStart?: number | undefined): GapDeviceNameImpl; readonly name: string; constructor(gapDeviceName: GapDeviceName); } /** Parse from a DataView into {@link GapDeviceName}. */ export declare function gapDeviceNameFromDataView(dataView: DataView | DataViewReader, indexStart?: number): GapDeviceName; //# sourceMappingURL=gap-device-name.d.ts.map