import { Writable } from 'node:stream'; export declare class StringWriteStream extends Writable { private buffer; /** * Terminal width in columns. * Used by formatTable() to apply width constraints and prevent table overflow. */ get columns(): number | undefined; constructor(); _write(chunk: any, _encoding: string, callback: (error?: Error | null) => void): void; toString(): string; } //# sourceMappingURL=streams.d.ts.map