/**
 * WASM runtime executor.
 *
 * Executes WebAssembly modules via wasmtime CLI.
 */
import { Runtime } from './base.js';
export declare class WasmRuntime implements Runtime {
    execute(wasmPath: string, context: unknown, config: any, chapterDir: string): Promise<unknown>;
}
//# sourceMappingURL=wasm.d.ts.map