import ServiceEndpoint from "./ServiceEndpoint";
/**
 * Class to represent a host service endpoint.
 */
export default class UserServiceEndpoint extends ServiceEndpoint {
    /**
     * locations of the hubs.
     */
    instances: string[];
    constructor(context: string, instances: 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): ServiceEndpoint;
}
