/** * Default resolver: detects the runtime at module load and picks fetch * vs. fs.readFile. Used as a fallback when the consumer doesn't honor * the package.json `browser` / `node` / `deno` / `bun` export conditions. * * Modern bundlers and runtimes hit the conditional exports instead and * never load this file. It's a belt-and-braces fallback. */ import type { WasmResolver } from "./dispatch.js"; export declare const resolveWasm: WasmResolver; //# sourceMappingURL=resolve-default.d.ts.map