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

The value of this characteristic is a UTF-8 string representing the name of the manufacturer of the device.

*/ export interface ManufacturerNameString { /**

Format: `utf8s`

*/ manufacturerName: string; } /** @see {@link https://raw.githubusercontent.com/oesmith/gatt-xml/refs/heads/master/org.bluetooth.characteristic.manufacturer_name_string.xml | Manufacturer Name String} */ export declare class ManufacturerNameStringImpl implements ManufacturerNameString { static readonly UUID_PREFIX = 10793; static readonly TYPE_NAME = "org.bluetooth.characteristic.manufacturer_name_string"; static readonly NAME = "Manufacturer Name String"; /** Parse from a DataView into {@link ManufacturerNameString}. */ static fromDataView(dataView: DataView | DataViewReader, indexStart?: number | undefined): ManufacturerNameStringImpl; readonly manufacturerName: string; constructor(manufacturerNameString: ManufacturerNameString); } /** Parse from a DataView into {@link ManufacturerNameString}. */ export declare function manufacturerNameStringFromDataView(dataView: DataView | DataViewReader, indexStart?: number): ManufacturerNameString; //# sourceMappingURL=manufacturer-name-string.d.ts.map