import { Chain, StarshipConfig } from '@starship-ci/types';
import { Service } from 'kubernetesjs';
import { IGenerator } from '../../../types';
/**
 * Generates the Service for Ethereum chain
 * Based on the Helm template: chains/eth/service.yaml
 */
export declare class EthereumServiceGenerator implements IGenerator {
    private config;
    private chain;
    constructor(chain: Chain, config: StarshipConfig);
    generate(): Array<Service>;
}
