import { IWasmModule } from "./IWasmModule";
import { WasmSupportApiBase } from "./WasmSupportApiBase";
/**
 * Implementation of the SupportApi interface using WebAssembly (Wasm) technology.
 * This class provides the functionality to interact with Support API services through WebAssembly.
 * DsPdf.wasm is embedded into the script file.
 *
 * @extends {WasmSupportApiBase}
 */
export declare class WasmSupportApiEmbedded extends WasmSupportApiBase {
    constructor(args?: any);
    protected loadWasmModule(): Promise<IWasmModule>;
}
