import { ClientKeystore as EVMClientKeystore, EVMClientParams } from '@xchainjs/xchain-evm';
/**
 * Class definition for the Ethereum EVM client.
 * Extends the `XchainEvmClient` class.
 */
export declare class ClientKeystore extends EVMClientKeystore {
    /**
     * Constructor for the Ethereum EVM client.
     * @param {Object} config - Configuration object for the client (optional).
     *                          Defaults to `defaultEthParams` if not provided.
     */
    constructor(config?: Omit<EVMClientParams, 'signer'>);
}
