import { RecursivePartial } from '@airgap/module-kit'; import { EthereumProtocolNetwork, EthereumProtocolOptions } from '../types/protocol'; import { EthereumBaseProtocol } from './EthereumBaseProtocol'; export interface EthereumProtocol extends EthereumBaseProtocol { } export declare function createEthereumProtocol(options?: RecursivePartial): EthereumProtocol; export declare const ETHEREUM_MAINNET_PROTOCOL_NETWORK: EthereumProtocolNetwork; export declare function createEthereumProtocolOptions(network?: Partial): EthereumProtocolOptions;