export interface WasmInstance { exports: Record; } export interface WasmInterpreterResult { instance: WasmInstance; } export interface WasmInterpreterOptions { /** Max instructions before aborting (default: 10_000_000) */ maxSteps?: number; } export declare function wasmInstantiate(bytes: Uint8Array, importObject?: Record>, options?: WasmInterpreterOptions): WasmInterpreterResult; //# sourceMappingURL=wasm-interpreter.d.ts.map