export type ExternalWasmFactoryOptions = { wasmUrl?: string; wasmBinary?: ArrayBuffer; }; /** * Sets up the global external WASM module factory. */ declare const externalWasmFactory: (options: ExternalWasmFactoryOptions) => Promise; export { externalWasmFactory };