/** * Browser cryptographic backend. * * Uses @noble/hashes for SHA3/HKDF and argon2-browser for Argon2id. * All dependencies are pure JavaScript / WASM, no native bindings. */ import type { CryptoBackend } from './types.js'; export declare const browserCrypto: CryptoBackend; export default browserCrypto; //# sourceMappingURL=browser.d.ts.map