import { ScannedPeripheral, PeripheralConnectionEvent, PeripheralCharacteristicValueChangedEvent } from "./Central"; export type PeripheralState = "disconnected" | "connecting" | "ready" | "disconnecting"; export interface PeripheralInfo { scannedPeripheral: ScannedPeripheral; state: PeripheralState; requiredServices: string; connStatusCallbacks: ((ev: PeripheralConnectionEvent) => void)[]; valueChangedCallbacks: Map void>; } export declare const CentralPeripheralsMap: Map; //# sourceMappingURL=CentralPeripheralsMap.d.ts.map