/// <reference types="node" />
import * as stream from 'stream';
export default class StreamTap extends stream.Transform {
    private callback;
    constructor(callback: (chunk: any) => void);
    _transform(chunk: any, encoding: string, callback: (err?: Error) => void): void;
}
//# sourceMappingURL=StreamTap.d.ts.map