import { BaseEthereumProtocol } from './BaseEthereumProtocol'; import { EtherscanInfoClient } from './clients/info-clients/EtherscanInfoClient'; import { AirGapNodeClient } from './clients/node-clients/AirGapNodeClient'; import { EthereumProtocolOptions } from './EthereumProtocolOptions'; export declare class EthereumProtocol extends BaseEthereumProtocol { readonly options: EthereumProtocolOptions; supportsHD: boolean; standardDerivationPath: string; constructor(options?: EthereumProtocolOptions); }