import { INebulaPlatformConfig, UnknownRecord } from '../typings/config'; import { IHelmDependency } from '../typings/helm'; export interface IOrbitService { generateChartConfig(): Promise; dependencies(): Promise; } export declare class HelmOrbitService implements IOrbitService { private nebulaConfig; constructor(nebulaConfig: INebulaPlatformConfig); generateChartConfig(): Promise; dependencies(): Promise; }