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

The HTTP Entity Body Characteristic contains the contents of the message body after any Transfer Encoding has been applied.

*/ export interface HttpEntityBody { /** *

Format: `utf8s`

*

The HTTP entity body used in the HTTP request.

*/ httpEntityBody: string; } /** @see {@link https://raw.githubusercontent.com/oesmith/gatt-xml/refs/heads/master/org.bluetooth.characteristic.http_entity_body.xml | Http Entity Body} */ export declare class HttpEntityBodyImpl implements HttpEntityBody { static readonly UUID_PREFIX = 10937; static readonly TYPE_NAME = "org.bluetooth.characteristic.http_entity_body"; static readonly NAME = "HTTP Entity Body"; /** Parse from a DataView into {@link HttpEntityBody}. */ static fromDataView(dataView: DataView | DataViewReader, indexStart?: number | undefined): HttpEntityBodyImpl; readonly httpEntityBody: string; constructor(httpEntityBody: HttpEntityBody); } /** Parse from a DataView into {@link HttpEntityBody}. */ export declare function httpEntityBodyFromDataView(dataView: DataView | DataViewReader, indexStart?: number): HttpEntityBody; //# sourceMappingURL=http-entity-body.d.ts.map