/**
 * Browser-optimized entry point for charms-js
 * Provides clean, direct function imports with automatic WASM initialization
 */
export { extractCharmsForWallet, extractAndVerifySpell, isWasmReady } from './browser.js';
export * from './shared/types.js';
export * from './shared/utils.js';
export { normalizeCharmForWallet } from './shared/wallet-adapter.js';
export { initializeWasm } from './shared/wasm-integration.js';
import { extractCharmsForWallet } from './browser.js';
export default extractCharmsForWallet;
