import { ServiceOptions } from './models'; import { IServiceManifestComposer, ServiceManifestComposer } from './ServiceManifestComposer'; export interface ICustomServiceComposer extends IServiceManifestComposer { runHelm: (cmd: string) => ICustomServiceComposer; } export declare class CustomServiceComposer extends ServiceManifestComposer implements ICustomServiceComposer { private manifestId; private manifestTitle; constructor(manifestId: string, manifestTitle: string, serviceOptions: ServiceOptions); runHelm(cmd: string): this; }