/** * LibHaLo - Programmatically interact with HaLo tags from the web browser, mobile application or the desktop. * Copyright by Arx Research, Inc., a Delaware corporation * License: MIT */ import { TransceiveFunc } from "../types.js"; interface UnlockHWCallback { (cur: number, max: number): void; } declare function unlockHW(transceive: TransceiveFunc, keyNo: number, statusCallback?: UnlockHWCallback | null): Promise<{ status: string; details: string; }>; export { UnlockHWCallback, unlockHW }; //# sourceMappingURL=unlock_hw.d.ts.map