import { BaseEthereumProtocol } from './BaseEthereumProtocol'; import { EtherscanInfoClient } from './clients/info-clients/EtherscanInfoClient'; import { AirGapNodeClient } from './clients/node-clients/AirGapNodeClient'; import { NetworkType } from '../../utils/ProtocolNetwork'; export declare class RSKProtocol extends BaseEthereumProtocol { name: string; networkType: NetworkType; rpcUrl: string; blockexplorerUrl: string; chainId: number; constructor(name?: string, networkType?: NetworkType, rpcUrl?: string, blockexplorerUrl?: string, chainId?: number); } export declare class RSKTestnetProtocol extends BaseEthereumProtocol { constructor(); }