import { type DataViewReader } from "./data-view-reader.js"; /**
The HTTPS Security characteristic contains the known authenticity of the HTTPS Server certificate for the URI.
*/ export interface HttpsSecurity { /** *Format: `boolean`
*The known authenticity of the HTTP Server certificate for the URI.
* | Key | Description | * | --- | ----------- | * | 0 | False | * | 1 | True | * */ httpsSecurity: boolean; } /** @see {@link https://raw.githubusercontent.com/oesmith/gatt-xml/refs/heads/master/org.bluetooth.characteristic.https_security.xml | Https Security} */ export declare class HttpsSecurityImpl implements HttpsSecurity { static readonly UUID_PREFIX = 10939; static readonly TYPE_NAME = "org.bluetooth.characteristic.https_security"; static readonly NAME = "HTTPS Security"; /** Parse from a DataView into {@link HttpsSecurity}. */ static fromDataView(dataView: DataView | DataViewReader, indexStart?: number | undefined): HttpsSecurityImpl; readonly httpsSecurity: boolean; constructor(httpsSecurity: HttpsSecurity); } /** Parse from a DataView into {@link HttpsSecurity}. */ export declare function httpsSecurityFromDataView(dataView: DataView | DataViewReader, indexStart?: number): HttpsSecurity; //# sourceMappingURL=https-security.d.ts.map