//#region src/cli/lib/envFile.d.ts type EnvEntry = { name: string; value: string; }; type AppendEnvResult = { appended: string[]; created: boolean; filePath: string; skipped: string[]; }; declare const applyEnvFile: (filePath: string) => { names: string[]; }; declare const appendEnvLines: (filePath: string, entries: EnvEntry[]) => AppendEnvResult; //#endregion export { AppendEnvResult, EnvEntry, appendEnvLines, applyEnvFile }; //# sourceMappingURL=envFile.d.ts.map