import { InitOutput } from "../../wasm/src/sdk/sdk"; export declare const init: () => Promise; import { Sdk, SdkWasmOptions } from "../../lib/src"; /** * Query native token from the node * @async * @param rpc - URL of the node * @returns */ export declare function getNativeToken(rpc: string): Promise; /** * Initialize the SDK memory * @async * @param props - SdkWasmOptions object * @returns - Sdk instance */ export declare function initSdk(props: SdkWasmOptions): Promise; /** * Export init promise directly */ export default init;