interface EnvOptions { profile?: string; bot?: string; } /** * Show the current .env file from remote VPS */ export declare function envShowCommand(options: EnvOptions): Promise; /** * Edit the .env file using the user's default editor */ export declare function envEditCommand(options: EnvOptions): Promise; /** * Set a specific environment variable */ export declare function envSetCommand(assignment: string, options: EnvOptions): Promise; /** * Get a specific environment variable */ export declare function envGetCommand(key: string, options: EnvOptions): Promise; /** * Delete a specific environment variable */ export declare function envDeleteCommand(key: string, options: EnvOptions): Promise; export {}; //# sourceMappingURL=env.d.ts.map