/** * 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 { KeyFlags } from "../types.js"; declare const KEY_FLAGS: { KEYFLG_IS_PWD_PROTECTED: number; KEYFLG_FLAG_FORMAT_V2: number; KEYFLG_RESERVED_2: number; KEYFLG_SIGN_NOT_USED: number; KEYFLG_IS_IMPORTED: number; KEYFLG_IS_EXPORTED: number; }; declare function parseKeyFlags(keyFlags: number): KeyFlags; export { KEY_FLAGS, parseKeyFlags }; //# sourceMappingURL=keyflags.d.ts.map