import { DockerImageInfo } from '../parsers/base-parser';
import { EnvironmentVariableGenerationConfig } from '../types/environment-config';
export declare function processEnvironmentVariablesGeneration(environment: {
    [key: string]: string;
}, image: DockerImageInfo, config?: EnvironmentVariableGenerationConfig): {
    [key: string]: string;
};
