import { ServiceOptions } from './interfaces/service-options.interface'; import { EtcdService } from './service.etcd'; import { ConsulService } from './service.consul'; export declare class ServiceFactory { private readonly options; constructor(options: ServiceOptions); create(backend: string, ref: any): EtcdService | ConsulService; }