type EnvVarValue = string | {
    comment: string;
    value: string;
};
export declare const makeEnv: (newEnvVars: Record<string, EnvVarValue>, filePath?: string) => Promise<string>;
export {};
