/**
 * abstract class to represent a service endpoint.
 * based on: https://github.com/decentralized-identity/identity-hub/blob/master/explainer.md.
 */
export default abstract class ServiceEndpoint {
    /**
     * The context of the service reference.
     */
    context: string;
    /**
     * The type of the service reference.
     */
    type: string;
    constructor(context: string, type: string);
}
