export interface EnvironmentConfig {
    [key: string]: string;
}
type EnvironmentInput = string[] | {
    [key: string]: string;
} | string | undefined;
export declare function normalizeEnvironment(env: EnvironmentInput, envVariables?: Record<string, string>): EnvironmentConfig;
export {};
