import { INebulaPlatformConfig } from '../../typings/config'; import { IDatabaseService, ILocalDatabaseConfig } from '../../typings/database'; import { IHelmDependency } from '../../typings/helm'; export interface IPostgresDatabaseValues { postgresqlUsername: string; postgresqlPassword: string; postgresqlDatabase: string; } export declare class PostgresDatabaseService implements IDatabaseService { private nebulaConfig; private details; private alias; constructor(nebulaConfig: INebulaPlatformConfig); localConfig(): ILocalDatabaseConfig; config(): Record; helm(): IHelmDependency[]; }