import { IWasmModule } from "./IWasmModule";
import { WasmSupportApiBase } from "./WasmSupportApiBase";
export type WasmSupportApiOptions = {
    wasmUrl?: string;
    wasmBinary?: ArrayBuffer;
};
/**
 * Implementation of the SupportApi interface using WebAssembly (Wasm) technology.
 * This class provides the functionality to interact with Support API services through WebAssembly.
 *
 * @extends {WasmSupportApiBase}
 */
export declare class WasmSupportApiExternal extends WasmSupportApiBase {
    private options;
    constructor(options?: WasmSupportApiOptions, ...args: any[]);
    protected loadWasmModule(): Promise<IWasmModule>;
}
