import { IClosable, IReadable, ISyncReadable } from '../types.js'; /** create an async readable stream from a sync readable stream */ export declare function fumanSyncReadableToAsync(readable: ISyncReadable): IReadable; /** convert a web ReadableStream to a fuman readable stream */ export declare function webReadableToFuman(readable: ReadableStream): IReadable & IClosable; /** convert a fuman readable stream to a web ReadableStream */ export declare function fumanReadableToWeb(readable: IReadable): ReadableStream;