/** * 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 { ExecOptions, ExecReturnStruct } from "../types.js"; import { Buffer } from 'buffer/index.js'; /** * Check if user has granted us permission to use WebNFC interface. * @returns {Promise} */ declare function checkWebNFCPermission(): Promise; declare function execWebNFC(request: Buffer, options: ExecOptions): Promise; export { checkWebNFCPermission, execWebNFC }; //# sourceMappingURL=webnfc.d.ts.map