declare namespace _default { export { type }; export function module(version?: string): string; export function engine({ LuaFactory, LuaLibraries }: { LuaFactory: any; LuaLibraries: any; }, config: any, _: any, baseURL: any): Promise; export function registerJSModule(interpreter: any, name: any, value: any): void; export function run(interpreter: any, code: any, ...args: any[]): any; export function runAsync(interpreter: any, code: any, ...args: any[]): Promise; export function runEvent(interpreter: any, code: any, event: any): Promise; export function transform(_: any, value: any): any; export function writeFile({ cmodule: { module: { FS }, }, }: { cmodule: { module: { FS: any; }; }; }, path: any, buffer: any): any; } export default _default; declare const type: "wasmoon";