declare namespace _default { export { type }; export function module(): string; export function engine(module: any): Promise; export function registerJSModule(_: any, name: any, value: any): void; export { run }; export { run as runAsync }; export function runEvent(interpreter: any, code: any, event: any): Promise; export function transform(_: any, value: any): any; export function writeFile(): void; } export default _default; declare const type: "dummy"; declare function run(interpreter: any, code: any): any;