/** Url and port of a service */
export interface Address {
    /** Port to use to access to the service */
    port: number;
    /** Url to contact the service */
    url: string;
}
//# sourceMappingURL=Address.d.ts.map