import { Promised, StrictStream } from './index'; declare const DONE: unique symbol; export type IRead = () => Promised; export declare function reader(read: IRead): StrictStream; export declare namespace reader { var DONE: unique symbol; } export declare function read(stream: StrictStream): IRead; export declare namespace read { var DONE: unique symbol; } export {};