import { ClientKeystore as EVMClientKeystore, EVMClientParams } from '@xchainjs/xchain-evm';
/**
 * Customized BSC client extending the base XchainEvmClient.
 */
export declare class ClientKeystore extends EVMClientKeystore {
    /**
     * Constructor for the BSC client.
     *
     * @param {Object} config Configuration parameters for the client. Defaults to defaultBscParams if not provided.
     */
    constructor(config?: Omit<EVMClientParams, 'signer'>);
}
