import type { IMmdWasmInstanceType, MmdWasmType } from "../mmdWasmInstance"; /** * Multithreaded debug build MmdWasmInstanceType * * This wasm instance provides fast performance by performing worker-based multithreading * * Requirements for use: * * - Browser that supports WebAssembly and SharedArrayBuffer * - Serve page with https * - Use following headers in your server: * ```http * Cross-Origin-Opener-Policy: same-origin * Cross-Origin-Embedder-Policy: require-corp * ``` */ export declare class MmdWasmInstanceTypeMD implements IMmdWasmInstanceType { getWasmInstanceInner(): MmdWasmType; }