import { CallOptions, LiqwidInstance } from './types'; export declare function prepareOptions(_liqwid: LiqwidInstance, asset: string, options?: CallOptions): CallOptions; /** * This function acts like a decorator for all methods that interact with the * blockchain. In order to use the correct Liqwid Protocol addresses, the * Liqwid SDK must know which network its provider points to. This * function holds up a transaction until the main constructor has determined * the network ID. * * @hidden * * @param {Liqwid} _liqwid The instance of the Liqwid SDK. * */ export declare function netId(_liqwid: LiqwidInstance): Promise;