/// import { Writable } from "stream"; /** * Wraps the standard output stream of the process (`process.stdout`) * and makes it mutable: * When the stream is muted any `write` calls will be skipped. * This is useful, e.g. when you are prompting for password inputs. */ export declare class MutableStdOut { readonly stream: Writable; private muted; mute(): void; unmute(): void; } //# sourceMappingURL=mutable-stdout.d.ts.map