import { type Config, type GoInstance, type SetIsWasmLoaded } from './bridge';
export declare const getConfig: () => Config;
/**
 * Loads the WebAssembly (Wasm) module and runs it within the Go instance.
 *
 * @param go The Go instance.
 */
export declare function loadWasm(go: GoInstance, setIsWasmLoaded: SetIsWasmLoaded): Promise<void>;
