export declare class Service {
    readonly name: string;
    readonly description: string;
    readonly serviceProvider: string;
    readonly invokeUrl?: string;
    readonly status?: string;
    constructor(name: string, description: string, serviceProvider: string, invokeUrl?: string, status?: string);
}
