import { Readable } from "stream";
type Options = {
    trim: boolean;
};
export declare const streamToString: (stream: Readable, options?: Options) => Promise<string>;
export {};
