import ServiceEndpoint from "./ServiceEndpoint";
/**
 * class to represent a host service endpoint.
 */
export default class HostServiceEndpoint extends ServiceEndpoint {
    /**
     * locations of the hubs.
     */
    locations: string[];
    constructor(context: string, locations: string[]);
    /**
     * Used to control the the properties that are
     * output by JSON.stringify.
     */
    toJSON(): any;
    /**
     * Used to control the the properties that are
     * output by JSON.parse.
     */
    static fromJSON(object: any): HostServiceEndpoint;
}
