export declare abstract class EnvService { abstract getEnvValue(key: string): Promise; abstract setEnvValue(key: string, value: string): Promise; } export declare class FileEnvService extends EnvService { private filePath; constructor(filePath: string); private readFile; private writeFile; private updateEnvData; getEnvValue(key: string): Promise; setEnvValue(key: string, value: string): Promise; } //# sourceMappingURL=env.d.ts.map