/// <reference types="node" />
import { Transform } from "stream";
import * as StreamSearch from "streamsearch";
/**
 * Transform stream that performs dot-unstuffing
 */
export default class DotUnstuffingStream extends Transform {
    _streamsearch: StreamSearch;
    constructor();
    /**
     *
     * @private
     */
    _transform(chunk: Buffer, encoding: string, callback: Function): void;
}
