export interface RpcConnectionDetails { url: string; port: number; } export interface DeroRpc_Interface { method: string; params?: any; node: RpcConnectionDetails; } export declare const DeroRpcCall: ({ node, method, params, }: DeroRpc_Interface) => Promise;