import { Service } from'../service';
import { HostAndPort } from'./host-and-port';
/**
* Service that is tied to one network address.
*/exportinterfaceSingleAddressServiceextendsService {
/**
* The address this service is available at.
*/readonlyaddress: HostAndPort;
}