import { WASI } from "@wasmer/wasi"; import { RubyVM } from "./index"; export declare const DefaultRubyVM: (rubyModule: WebAssembly.Module, options?: { consolePrint?: boolean; env?: Record | undefined; }) => Promise<{ vm: RubyVM; wasi: WASI; instance: WebAssembly.Instance; }>;