import { type DataViewReader } from "./data-view-reader.js"; /**
The Information included in this page is informative. The normative descriptions are contained in the applicable specification.
*/ export interface GapReconnectionAddress { /** *Format: `uint48`
*This is a non-resolvable private address
*/ address: number; } /** @see {@link https://raw.githubusercontent.com/oesmith/gatt-xml/refs/heads/master/org.bluetooth.characteristic.gap.reconnection_address.xml | Gap Reconnection Address} */ export declare class GapReconnectionAddressImpl implements GapReconnectionAddress { static readonly UUID_PREFIX = 10755; static readonly TYPE_NAME = "org.bluetooth.characteristic.gap.reconnection_address"; static readonly NAME = "Reconnection Address"; /** Parse from a DataView into {@link GapReconnectionAddress}. */ static fromDataView(dataView: DataView | DataViewReader, indexStart?: number | undefined): GapReconnectionAddressImpl; readonly address: number; constructor(gapReconnectionAddress: GapReconnectionAddress); } /** Parse from a DataView into {@link GapReconnectionAddress}. */ export declare function gapReconnectionAddressFromDataView(dataView: DataView | DataViewReader, indexStart?: number): GapReconnectionAddress; //# sourceMappingURL=gap-reconnection-address.d.ts.map