import { KeyValuePair } from "../gitlab/interfaces"; /** * Writes key-value pairs to a file, using .env file syntax (key=value). * * @returns {string} The file path being written to. */ export declare const writeKeyValuePairsToEnvFile: (values: KeyValuePair[], filePath: string, fileHeader?: string | undefined) => Promise;