///
///
import { Writable } from 'stream';
export declare class RescopedStream extends Writable {
stream: NodeJS.WriteStream;
scope: string;
constructor(stream: NodeJS.WriteStream, scope: string);
write(msg: string): boolean;
}
export declare namespace RescopedStream {
function create(stream: NodeJS.WriteStream, scope: string): NodeJS.WriteStream;
}