import { Utils } from "@arkecosystem/core-kernel"; /** * @export * @class RestClient */ export declare class RestClient { /** * @static * @param {string} path * @param {Utils.HttpOptions} [opts] * @returns {Promise} * @memberof RestClient */ static get(path: string, opts?: Utils.HttpOptions): Promise; /** * @static * @param {string} path * @param {*} body * @returns {Promise} * @memberof RestClient */ static post(path: string, body: any): Promise; /** * @static * @param {*} transactions * @returns {Promise} * @memberof RestClient */ static broadcast(transactions: any): Promise; } //# sourceMappingURL=rest-client.d.ts.map