import type { RuntimeOptions } from './types/RuntimeOptions.js'; import type { InitResponseType } from './types/InitResponseType.js'; import type { IFs } from 'memfs'; /** * Loads and creates a QuickJS instance * @param wasmVariantName name of the variant * @returns */ export declare const quickJS: (wasmVariantName?: string) => Promise<{ createRuntime: (runtimeOptions?: RuntimeOptions, existingFs?: IFs) => Promise; }>;