/// import { Env, ISecrets, IValueFile } from "../../types/types"; export declare const getGitRoot: () => Promise; export declare const getRootGitlabCiFile: () => Promise; export declare const readRootGitlabCiFile: () => Promise; export declare const hasGitlabCiFile: () => Promise; export declare const getLocalProjectVariables: () => Promise; export declare const getProjectNamespace: (env: Env) => Promise; export declare const getProjectHelmReleaseName: (env: Env) => Promise; export declare const getProjectPods: (env: Env) => Promise; export declare const getProjectPvcs: (env: Env) => Promise; export declare const getProjectPodNames: (env: Env) => Promise; export declare const getPassPath: (env: Env) => Promise; export declare const getProjectValuesFiles: (env: Env, subApp?: string) => Promise; export declare const getAllValues: (env: Env, subApp?: string) => Promise; export declare const getProjectValues: (env: Env, subApp?: string) => Promise; export declare const getAllPublicEnvVars: (env: Env, subApp?: string) => Promise>; export declare const getAllSecretsEnvVarsMapping: (env: Env, subApp?: string) => Promise; export declare const hasSecrets: (env: Env, subApp?: string) => Promise; export declare const getAllEnvVars: (env: Env, subApp?: string) => Promise<{ [x: string]: string; }>; export declare const getAllSecretEnvVars: (env: Env, subApp?: string) => Promise>;