import { ScannedPeripheral, PeripheralCharacteristicValueChangedEvent } from "./Central"; export type PeripheralState = "disconnected" | "connecting" | "ready" | "disconnecting"; export interface PeripheralInfo { scannedPeripheral: ScannedPeripheral; state: PeripheralState; requiredServices: string; valueChangedCallbacks: Map void>; } //# sourceMappingURL=PeripheralInfo.d.ts.map