import Tuple from "../Tuple"; import Stream from "../Stream"; declare type TupleCallback = (tuple: Tuple) => any | any[] | Promise | Promise | void; export default function toStream(callback: TupleCallback): (tuple: Tuple, out: Stream) => void; export {};