/** * 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 { HaloTagError } from "../halo/exceptions.js"; import { ExecHaloCmdOptions, HaloCommandObject, HaloResponseObject } from "../types.js"; import { Buffer } from 'buffer/index.js'; declare function execHaloCmd(command: HaloCommandObject, options: ExecHaloCmdOptions): Promise; declare function getHaloTagError(res: Buffer): HaloTagError | null; declare function checkHaloTagError(res: Buffer): void; declare function wrapCommandForU2F(command: Buffer): Buffer; declare function unwrapResultFromU2F(res: Buffer): Buffer; export { execHaloCmd, getHaloTagError, checkHaloTagError, wrapCommandForU2F, unwrapResultFromU2F }; //# sourceMappingURL=common.d.ts.map