import { type DataViewReader } from "./data-view-reader.js"; /**
The Location Name characteristic describes the name of the location the device is installed in.
*/ export interface LocationName { /**Format: `utf8s`
*/ locationName: string; } /** @see {@link https://raw.githubusercontent.com/oesmith/gatt-xml/refs/heads/master/org.bluetooth.characteristic.location_name.xml | Location Name} */ export declare class LocationNameImpl implements LocationName { static readonly UUID_PREFIX = 10933; static readonly TYPE_NAME = "org.bluetooth.characteristic.location_name"; static readonly NAME = "Location Name"; /** Parse from a DataView into {@link LocationName}. */ static fromDataView(dataView: DataView | DataViewReader, indexStart?: number | undefined): LocationNameImpl; readonly locationName: string; constructor(locationName: LocationName); } /** Parse from a DataView into {@link LocationName}. */ export declare function locationNameFromDataView(dataView: DataView | DataViewReader, indexStart?: number): LocationName; //# sourceMappingURL=location-name.d.ts.map